@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --primary: #22c55e;
    --primary-light: #4ade80;
    --primary-glow: #16a34a;
    --secondary: #f97316;
    --accent: #22d3ee;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --bg-dark: #0a0f0d;
    --bg-darker: #050a07;
    --bg-card: rgba(10, 20, 14, 0.7);
    --text-main: #f0fdf4;
    --text-muted: #86efac;
    --text-dim: #4ade80;
    --glass: rgba(34, 197, 94, 0.04);
    --glass-hover: rgba(34, 197, 94, 0.08);
    --glass-border: rgba(34, 197, 94, 0.12);
    --glass-border-hover: rgba(34, 197, 94, 0.25);
    --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --glow-primary: 0 0 80px rgba(34, 197, 94, 0.15);
    --glow-secondary: 0 0 60px rgba(249, 115, 22, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animated Background */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #166534 0%, #14532d 100%);
    top: -250px;
    left: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #164e63 0%, #155e75 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    opacity: 0.15;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.05); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(20px, 50px) scale(1.02); }
}

.grid-pattern {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
}

.particle-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFade 4s ease-in-out infinite;
}

@keyframes particleFade {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-30px); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    background: rgba(5, 10, 7, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.6rem 5%;
    background: rgba(5, 10, 7, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

img.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-links a:hover { color: #fff; }

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 0;
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--primary-light); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
    border: 1px solid rgba(249, 115, 22, 0.35);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.12); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.25); }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-cn {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.meta-value {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-meta-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(34, 197, 94, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
    color: white;
    box-shadow: 0 10px 40px -10px rgba(34, 197, 94, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px rgba(34, 197, 94, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 5%;
    background: rgba(34, 197, 94, 0.03);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-light);
}

.stat-text {
    text-align: left;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 7rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 500;
}

.about-text p:not(.about-lead) {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-highlight-item {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.about-highlight-item:hover {
    border-color: var(--glass-border-hover);
    transform: translateX(6px);
}

.about-highlight-item > i {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-top: 0.15rem;
    min-width: 24px;
}

.about-highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.about-highlight-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--card-shadow), var(--glow-primary);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gallery Section */
.steam-widget {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.steam-widget-link {
    text-decoration: none;
    display: block;
}

.steam-widget-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(23, 26, 33, 0.8) 0%, rgba(27, 40, 56, 0.6) 100%);
    border: 1px solid rgba(102, 192, 244, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    transition: var(--transition);
}

.steam-widget-inner:hover {
    border-color: rgba(102, 192, 244, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 192, 244, 0.1);
}

.steam-widget-left {
    font-size: 2.5rem;
    color: #66c0f4;
}

.steam-widget-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.steam-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.steam-widget-subtitle {
    font-size: 0.85rem;
    color: rgba(102, 192, 244, 0.7);
}

.steam-widget-arrow {
    font-size: 1rem;
    color: rgba(102, 192, 244, 0.5);
    transition: var(--transition);
}

.steam-widget-inner:hover .steam-widget-arrow {
    color: #66c0f4;
    transform: translateX(3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--card-shadow);
}

.gallery-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(10, 20, 14, 0.9) 0%, rgba(20, 10, 5, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: rgba(34, 197, 94, 0.3);
}

/* Download Section */
.download-section {
    position: relative;
    max-width: 100%;
    padding: 7rem 5%;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.download-section .section-header,
.download-section .download-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.download-grid.two-col {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.download-card.featured {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
}

.download-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.download-card-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.download-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.download-status {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.download-status.coming-soon {
    color: var(--secondary);
}

.download-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-download {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.download-note {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* System Requirements */
.specs-container {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    align-items: flex-start;
}

.specs-column { flex: 1; }

.specs-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glass-border);
}

.specs-header.minimum i { color: var(--warning); }
.specs-header.recommended i { color: var(--primary-light); }

.specs-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.specs-header i { font-size: 1.3rem; }

.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.specs-list li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.specs-list li strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    display: inline-block;
    min-width: 85px;
}

.specs-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

.specs-footnote {
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Gameplay Tips Timeline */
.update-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.update-item:hover {
    transform: translateX(8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--card-shadow);
}

.update-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-light);
}

.update-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.update-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.update-content kbd {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 0.1rem 0.45rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--glass-border-hover); }

.faq-item.active { border-color: rgba(34, 197, 94, 0.3); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary-light); }

.faq-question i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    min-width: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: rgba(255, 255, 255, 0.75);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 10, 7, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-studio {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-studio strong {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: #66c0f4;
    transform: translateY(-3px);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .specs-container {
        flex-direction: column;
    }

    .specs-divider {
        width: 100%;
        height: 1px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-links-group { gap: 2rem; }
}

@media (max-width: 768px) {
    nav { padding: 0.8rem 4%; }

    .nav-links, .nav-cta { display: none; }

    .mobile-menu-btn { display: flex; }

    .hero { padding: 7rem 4% 3rem; }

    .hero-title { font-size: clamp(2.5rem, 12vw, 4.5rem); }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-bar {
        gap: 1.5rem;
        padding: 2rem 4%;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .features-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .download-grid.two-col { grid-template-columns: 1fr; }

    .section { padding: 4rem 4%; }

    .update-item {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-top { flex-direction: column; }

    .footer-brand { max-width: 100%; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-meta-divider { display: none; }

    .final-cta-buttons {
        flex-direction: column;
    }

    .steam-widget-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .steam-widget-arrow { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }

    .footer-links-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-tags {
        gap: 0.35rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}