* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #00F5FF;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --fungal-green: #7CB342;
    --fungal-purple: #8E24AA;
    --text-light: #E0E0E0;
    --text-dim: #9E9E9E;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(142, 36, 170, 0.1) 0%, transparent 50%);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.glitch {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    letter-spacing: 5px;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-color);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--fungal-purple);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    25% { text-shadow: -2px 0 var(--accent-color), 2px 0 var(--fungal-purple); }
    50% { text-shadow: 2px 0 var(--accent-color), -2px 0 var(--fungal-purple); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    50% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(60% 0 20% 0); transform: translate(2px, 2px); }
    50% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, -2px); }
}

.tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Inner Page Hero */
.hero-inner {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/3283660/ss_0c087f13419c19837b75b95cf1bb6fb1f58bdbfc.1920x1080.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-inner h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Content Sections */
.content-section {
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Global Headings */
h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--accent-color);
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: var(--darker-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(142, 36, 170, 0.1) 100%);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

/* Video Showcase */
.video-showcase {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    text-align: center;
    color: var(--secondary-color);
    margin-top: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mission Detail Styling */
.mission-detail {
    margin-bottom: 2rem;
    background: rgba(255, 107, 53, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.mission-header {
    background: rgba(255, 107, 53, 0.08);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mission-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.mission-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.mission-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.mission-objectives,
.mission-tips {
    margin-top: 1rem;
    background: rgba(0, 245, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.mission-objectives h5,
.mission-tips h5 {
    color: var(--accent-color);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.mission-objectives ul,
.mission-tips ul {
    list-style: none;
    padding: 0;
}

.mission-objectives li,
.mission-tips li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.mission-objectives li:before,
.mission-tips li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mission-media img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

/* Robot Detail Styling */
.robot-detail {
    margin-bottom: 2rem;
    background: rgba(255, 107, 53, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--primary-color);
}

.robot-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.robot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.robot-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.ability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.ability-card {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid var(--accent-color);
    padding: 0.8rem;
    border-radius: 6px;
}

.ability-card h5 {
    color: var(--accent-color);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.ability-card p {
    font-size: 0.85rem;
}

.playstyle-tips {
    margin-top: 1rem;
    background: rgba(124, 179, 66, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--fungal-green);
}

.playstyle-tips h4 {
    color: var(--fungal-green);
    margin-bottom: 0.6rem;
}

.playstyle-tips ul {
    list-style: none;
    padding: 0;
}

.playstyle-tips li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.playstyle-tips li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--fungal-green);
}

.robot-media {
    text-align: center;
}

.robot-media img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    margin-bottom: 0.8rem;
}

.robot-media video {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.media-caption {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Community Page Specific */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.review-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 245, 255, 0.08));
    border: 2px solid var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.score,
.verdict {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    background: rgba(0, 245, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.review-card blockquote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    line-height: 1.5;
}

.review-highlights {
    margin-top: 1rem;
    background: rgba(0, 245, 255, 0.03);
    padding: 1rem;
    border-radius: 6px;
}

.review-highlights h4 {
    color: var(--accent-color);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.review-highlights ul {
    list-style: none;
    padding: 0;
}

.review-highlights li {
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.85rem;
}

.review-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--fungal-green);
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.stat-highlight .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-highlight .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: rgba(255, 107, 53, 0.03);
    border-left: 3px solid var(--accent-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.news-card:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(5px);
}

.news-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.news-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

/* Simple Footer */
.simple-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.simple-footer p {
    margin: 0;
    white-space: nowrap;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.simple-footer .social-links {
    margin-top: 0;
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ensure footer copyright doesn't wrap on medium screens */
@media (max-width: 1200px) {
    .simple-footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .simple-footer {
        padding: 0 1rem;
    }
    
    .simple-footer p {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom p {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .simple-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .simple-footer p {
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
    }
    
    .social-links {
        gap: 1.2rem;
    }
    
    .social-links a {
        font-size: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content,
    .robot-content {
        grid-template-columns: 1fr;
    }
    
    .review-card.featured {
        grid-column: span 1;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .language-list {
        grid-template-columns: 1fr;
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    .hero-inner h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .ability-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Specific Page Overrides */
.robots-showcase h2,
.missions-preview h2,
.game-story h2,
.weapons-preview h2,
.developer-quotes h2,
.game-info h2,
.special-features h2,
.testimonials h2,
.system-requirements h2,
.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Home Page Specific */
.robots-showcase {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.robot-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 245, 255, 0.08) 100%);
    border: 1px solid var(--accent-color);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.robot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.robot-abilities {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.ability {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Make internal page sections more compact */
.mission-types,
.weapon-categories,
.hub-features,
.critical-reception,
.latest-news,
.ea-timeline,
.ea-features {
    margin-bottom: 2.5rem;
}

/* Optimize spacing for all sections */
section {
    padding: 2.5rem 0;
}

.content-section {
    padding: 2rem 0;
}

/* Spore Animation */
.spore-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.spore-animation::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--fungal-green) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(100vw, 100vh) scale(0.5); opacity: 0; }
    25% { transform: translate(50vw, 20vh) scale(1); opacity: 0.3; }
    50% { transform: translate(20vw, 50vh) scale(0.8); opacity: 0.2; }
    75% { transform: translate(80vw, 80vh) scale(1.2); opacity: 0.1; }
}
/* Image Showcase Gallery */
.image-showcase {
    padding: 3rem 0;
    background: var(--darker-bg);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    background: var(--dark-bg);
}

.showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-color);
}

.showcase-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-image .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: #fff;
    padding: 30px 15px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Why Mycopunk Stands Out Section */
.gameplay-features {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.feature-highlight h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-highlight p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Overview Page Specific */
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.overview-main {
    background: rgba(255, 107, 53, 0.03);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--accent-color);
}

.language-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.language-list li {
    background: rgba(0, 245, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.language-list li:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: scale(1.05);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    text-align: center;
    padding: 2rem;
}

.cta-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-card .btn {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    background: rgba(0, 245, 255, 0.05);
    border-left: 3px solid var(--accent-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateX(5px);
}

.feature-list strong {
    color: var(--accent-color);
    display: inline-block;
    margin-right: 0.5rem;
}
