/* ============================================
   ARGENTOOM — Silver Gaming Studio
   Premium Static Website Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Silver Palette */
    --bg-primary: #08080c;
    --bg-secondary: #0e0e14;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);

    --silver-100: #f0f0f5;
    --silver-200: #d0d0d8;
    --silver-300: #a8a8b8;
    --silver-400: #8888a0;
    --silver-500: #6a6a82;
    --silver-600: #4a4a60;

    --accent-primary: #c0c0d0;
    --accent-glow: rgba(192, 192, 220, 0.25);
    --accent-blue: #7090c0;
    --accent-purple: #9080b8;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-heading: 'Inter', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-mono: 'Fragment Mono', 'Courier New', monospace;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1240px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--silver-300);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol { list-style: none; }

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--silver-100);
    font-weight: 700;
    line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); letter-spacing: -0.01em; }

.text-gradient {
    background: linear-gradient(135deg, var(--silver-100) 0%, var(--silver-400) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-silver {
    background: linear-gradient(135deg, #e8e8f0, #b0b0c0, #e8e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--silver-500);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-blue);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent-blue);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--silver-200), var(--silver-400));
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--silver-300);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    border-color: var(--border-hover);
    background: var(--bg-glass);
    color: var(--silver-100);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.nav.scrolled {
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--silver-100);
    letter-spacing: -0.02em;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--silver-400);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--silver-200);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--silver-100);
}

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

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--silver-300);
    transition: all var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(8, 8, 12, 0.3) 0%,
        rgba(8, 8, 12, 0.7) 60%,
        var(--bg-primary) 100%
    );
}

/* Animated gradient orb */
.hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    background: var(--accent-blue);
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    background: var(--accent-purple);
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--silver-400);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--silver-600);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--silver-600), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Grid Overlay (decorative) --- */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* --- Section Base --- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--silver-400);
    font-size: 1.05rem;
}

/* --- Games Portfolio --- */
/* --- Games Portfolio Carousel --- */
.games-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.games-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card {
    position: absolute;
    width: 320px;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    transform: translateZ(-400px) translateX(0);
}

.game-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateZ(150px) translateX(0) rotateY(0deg);
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6), 
        0 0 50px var(--accent-glow);
}

.game-card.active:hover {
    transform: translateZ(180px) translateX(0) rotateY(0deg) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.game-card.prev {
    opacity: 0.6;
    visibility: visible;
    transform: translateX(-80%) translateZ(-200px) rotateY(35deg);
    z-index: 5;
    pointer-events: none;
}

.game-card.next {
    opacity: 0.6;
    visibility: visible;
    transform: translateX(80%) translateZ(-200px) rotateY(-35deg);
    z-index: 5;
    pointer-events: none;
}

.game-card.hidden-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-150%) translateZ(-500px) rotateY(45deg);
}

.game-card.hidden-right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(150%) translateZ(-500px) rotateY(-45deg);
}

.game-card-image {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 8, 12, 0) 60%, 
        rgba(8, 8, 12, 0.8) 100%
    );
    transition: opacity var(--transition-medium);
}

.game-card.active .game-card-image::after {
    opacity: 1;
}

.game-card-content {
    padding: 28px;
    background: linear-gradient(180deg, rgba(14, 14, 20, 0.6) 0%, rgba(14, 14, 20, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-subtle);
}

.game-card-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--silver-100);
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver-300);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.game-tag.tag-puzzle { color: var(--accent-blue); border-color: rgba(112, 144, 192, 0.2); }
.game-tag.tag-casual { color: #90c080; border-color: rgba(144, 192, 128, 0.2); }
.game-tag.tag-social { color: var(--accent-purple); border-color: rgba(144, 128, 184, 0.2); }
.game-tag.tag-creative { color: #c0a060; border-color: rgba(192, 160, 96, 0.2); }

/* --- Carousel Controls --- */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--silver-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all var(--transition-medium);
}

.carousel-control:hover {
    background: var(--bg-glass-hover);
    border-color: var(--silver-400);
    color: var(--silver-100);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev { left: -80px; }
.carousel-control.next { right: -80px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--silver-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--silver-200);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--accent-glow);
}

@media (max-width: 1100px) {
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }
}

@media (max-width: 768px) {
    .games-carousel {
        height: 400px;
    }
    .game-card {
        width: 260px;
        height: 390px;
    }
    .game-card.prev { transform: translateX(-60%) translateZ(-200px) rotateY(30deg); }
    .game-card.next { transform: translateX(60%) translateZ(-200px) rotateY(-30deg); }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--silver-400);
}

.about-text p:first-of-type {
    font-size: 1.1rem;
    color: var(--silver-300);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-medium);
}

.stat-item:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--silver-100);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver-500);
}

.about-visual {
    position: relative;
}

.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-item h4 {
    font-size: 1rem;
    color: var(--silver-200);
    margin-bottom: 4px;
    font-weight: 600;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--silver-500);
    line-height: 1.5;
}

/* --- Contact / CTA Section --- */
.cta-section {
    text-align: center;
    padding: 140px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-lg);
    padding: 80px 60px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent, rgba(255,255,255,0.03));
    z-index: 0;
    pointer-events: none;
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--silver-400);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-card .hero-actions {
    margin-top: 0;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--silver-500);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--silver-300);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--silver-500);
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--silver-200);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    color: var(--silver-600);
}

.footer-bottom a {
    color: var(--silver-500);
}

.footer-bottom a:hover {
    color: var(--silver-300);
}

/* --- Divider --- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

/* --- Particle Canvas (decorative) --- */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg,
        var(--silver-200) 0%,
        var(--silver-100) 25%,
        var(--accent-blue) 50%,
        var(--silver-100) 75%,
        var(--silver-200) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

/* --- Legal Pages (Privacy Policy, Terms) --- */
.legal-page {
    padding-top: 160px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.legal-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-body {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-lg);
    padding: 56px 48px;
}

.legal-body h2 {
    font-size: 1.3rem;
    color: var(--silver-200);
    margin-top: 36px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.legal-body h2:first-of-type {
    margin-top: 24px;
}

.legal-body p {
    color: var(--silver-400);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

.legal-body ul li {
    position: relative;
    padding-left: 16px;
    color: var(--silver-400);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-body ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--silver-500);
    font-weight: 700;
}

.legal-body a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-decoration-color: rgba(112, 144, 192, 0.3);
    text-underline-offset: 3px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.legal-body a:hover {
    color: var(--silver-100);
    text-decoration-color: var(--silver-100);
}

.legal-body strong {
    color: var(--silver-300);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card.featured .game-card-image {
        padding-top: 55%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 12, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 160px 0 100px;
    }

    h1 {
        font-size: 2.4rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .game-card-image {
        padding-top: 65%;
    }

    .cta-card {
        padding: 48px 28px;
    }

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

    .footer-links {
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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