/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Core Colors */
    --primary: #0c1445;
    --primary-deep: #060a2e;
    --primary-mid: #101a5c;
    --secondary: #ffffff;
    --accent: #7dd3fc;
    --accent-bright: #a5e4ff;
    --accent-dim: #4fb8e8;
    --accent-glow: rgba(125, 211, 252, 0.25);

    /* Gradient Stops */
    --grad-start: #060a2e;
    --grad-mid: #1a0e4f;
    --grad-end: #0a2a3a;

    /* Glass */
    --glass-bg: rgba(12, 20, 69, 0.45);
    --glass-bg-strong: rgba(12, 20, 69, 0.65);
    --glass-border: rgba(125, 211, 252, 0.15);
    --glass-border-hover: rgba(125, 211, 252, 0.35);
    --glass-blur: 20px;
    --glass-blur-heavy: 40px;

    /* Chromatic */
    --chroma-1: rgba(125, 211, 252, 0.3);
    --chroma-2: rgba(168, 85, 247, 0.2);
    --chroma-3: rgba(52, 211, 153, 0.15);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dark: #1a1a2e;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(125, 211, 252, 0.15);
    --shadow-chromatic: 
        -3px -3px 12px rgba(125, 211, 252, 0.12),
        3px 3px 12px rgba(168, 85, 247, 0.1),
        0 0 24px rgba(52, 211, 153, 0.06);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Layout */
    --max-width: 1280px;
    --nav-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--grad-start);
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(26, 14, 79, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(10, 42, 58, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(26, 14, 79, 0.5) 0%, transparent 50%),
        linear-gradient(180deg, var(--grad-start) 0%, var(--grad-mid) 40%, var(--grad-end) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a:hover {
    color: var(--accent-bright);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
}

::selection {
    background: rgba(125, 211, 252, 0.3);
    color: var(--text-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.2);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition-med), box-shadow var(--transition-med);
}

.main-nav.scrolled {
    background: rgba(6, 10, 46, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 1px 0 rgba(125, 211, 252, 0.1), var(--shadow-md);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(125, 211, 252, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(125, 211, 252, 0.1) 100%);
    border: 1px solid rgba(125, 211, 252, 0.3);
    color: var(--accent) !important;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full) !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.3) 0%, rgba(125, 211, 252, 0.15) 100%);
    border-color: rgba(125, 211, 252, 0.5);
    box-shadow: var(--shadow-glow);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: var(--radius-blob);
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.25), transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    bottom: -5%;
    left: -10%;
    animation-delay: -7s;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15), transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
}

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

.particle-field {
    position: absolute;
    inset: 0;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(125, 211, 252, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--text-primary);
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.title-line-2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 50%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.title-line-3 {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    color: var(--primary-deep);
    box-shadow: 
        0 4px 16px rgba(125, 211, 252, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(125, 211, 252, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--primary-deep);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(125, 211, 252, 0.1);
    border-color: var(--glass-border-hover);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(125, 211, 252, 0.3), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s var(--ease-out) 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-game-icon {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 2;
    box-shadow: 
        var(--shadow-chromatic),
        var(--shadow-lg),
        0 0 60px rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.15);
}

.hero-image-ring {
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: var(--radius-2xl);
    animation: ringRotate 30s linear infinite;
}

.hero-image-ring-2 {
    inset: -30px;
    border-color: rgba(168, 85, 247, 0.08);
    animation-direction: reverse;
    animation-duration: 45s;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-chromatic);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card svg {
    flex-shrink: 0;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: -2s;
}

.floating-card-3 {
    bottom: 5%;
    right: 5%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.about-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-chromatic), var(--shadow-md);
}

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

.about-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    padding: 0;
    overflow: hidden;
}

.about-card-large .about-card-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-image {
    overflow: hidden;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

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

.about-card:hover .about-card-image img {
    transform: scale(1.05);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 211, 252, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-med);
    aspect-ratio: 16/10;
}

.gallery-item-wide {
    grid-column: span 1;
}

.gallery-grid .gallery-item:nth-child(2),
.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 2;
    aspect-ratio: 4/3;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
    aspect-ratio: auto;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-row: 2;
    grid-column: 1;
    aspect-ratio: auto;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
    aspect-ratio: auto;
}

.gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
}

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

.gallery-item:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-chromatic);
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 10, 46, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 10, 46, 0.95);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s var(--ease-out);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(125, 211, 252, 0.15);
    border-color: var(--glass-border-hover);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-nav:hover {
    background: rgba(125, 211, 252, 0.15);
    border-color: var(--glass-border-hover);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color var(--transition-med), box-shadow var(--transition-med);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-chromatic), var(--shadow-md);
}

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

.feature-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: var(--space-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 211, 252, 0.06);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
    background: rgba(125, 211, 252, 0.12);
    border-color: rgba(125, 211, 252, 0.25);
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ============================================
   ACTIVITY SECTION (Live Counters)
   ============================================ */
.activity-section {
    padding: var(--space-3xl) 0;
}

.activity-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-chromatic);
}

.activity-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), rgba(168, 85, 247, 0.5), transparent);
}

.activity-pulse {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: activityPulse 3s ease-in-out infinite;
}

@keyframes activityPulse {
    0%, 100% { opacity: 0.5; left: -100px; }
    50% { opacity: 1; left: calc(100% - 100px); }
}

.activity-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.activity-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.activity-live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.activity-label {
    color: var(--text-secondary);
    font-weight: 400;
}

.activity-count {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

.activity-count-urgent {
    color: #f59e0b;
    animation: urgentPulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.signup-info {
    padding-top: var(--space-xl);
}

.signup-info .section-title {
    text-align: left;
}

.signup-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: var(--space-2xl);
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Form */
.signup-form-wrapper {
    position: relative;
}

.signup-form {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-chromatic), var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(168, 85, 247, 0.6), var(--accent));
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(125, 211, 252, 0.05);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 0;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Checkbox */
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(125, 211, 252, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.form-checkbox input:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.form-checkbox input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--primary-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

.form-checkbox input:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.15);
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(125, 211, 252, 0.3);
}

.form-checkbox a:hover {
    text-decoration-color: var(--accent);
}

/* Submit Button Loading */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.form-success,
.form-error-message {
    text-align: center;
    padding: var(--space-2xl);
}

.form-success svg,
.form-error-message svg {
    margin: 0 auto var(--space-md);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-error-message h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: var(--space-sm);
}

.form-error-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-med);
}

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

.faq-item.active {
    border-color: rgba(125, 211, 252, 0.3);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-2xl);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--transition-med);
    color: var(--accent);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 var(--space-2xl) var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(125, 211, 252, 0.3);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-5xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-med);
}

.trust-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-chromatic);
}

.trust-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 211, 252, 0.06);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.trust-card a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(125, 211, 252, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    border-top: 1px solid rgba(125, 211, 252, 0.08);
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-2xl);
    position: relative;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(125, 211, 252, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--accent);
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: var(--space-md);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-age-notice {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-age-notice svg {
    flex-shrink: 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--nav-height) + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero p {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal-section {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(125, 211, 252, 0.1);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(12, 20, 69, 0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-mid);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    color: #333;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    color: #444;
}

.legal-content a {
    color: var(--primary-mid);
    text-decoration: underline;
    text-decoration-color: rgba(12, 20, 69, 0.3);
}

.legal-content a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.legal-content strong {
    font-weight: 600;
    color: #222;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(12, 20, 69, 0.1);
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: var(--space-lg);
    animation: slideUp 0.5s var(--ease-out);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: rgba(6, 10, 46, 0.95);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg), 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-cookie-accept {
    background: var(--accent);
    color: var(--primary-deep);
}

.btn-cookie-accept:hover {
    background: var(--accent-bright);
    box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}

.btn-cookie-reject {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--accent);
    text-decoration: underline;
    padding: 10px 16px;
}

.btn-cookie-settings:hover {
    color: var(--accent-bright);
}

.cookie-settings-panel {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(125, 211, 252, 0.1);
}

.cookie-option {
    margin-bottom: var(--space-md);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.cookie-settings-panel .btn-cookie {
    margin-top: var(--space-md);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero-game-icon {
        width: 220px;
        height: 220px;
    }

    .floating-card-1 { right: 5%; }
    .floating-card-2 { left: 5%; }

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

    .about-card-image {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 300px;
    }

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

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

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 10, 46, 0.98);
        backdrop-filter: blur(var(--glass-blur-heavy));
        -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-med);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: var(--space-md) var(--space-xl);
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-grid .gallery-item:nth-child(2),
    .gallery-grid .gallery-item:nth-child(3) {
        grid-column: auto;
    }

    .gallery-item {
        aspect-ratio: 16/10 !important;
    }

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

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

    .activity-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .hero-scroll-indicator {
        display: none;
    }

    .social-proof {
        flex-direction: column;
        gap: var(--space-md);
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .legal-content {
        padding: var(--space-2xl);
        border-radius: var(--radius-xl);
    }

    .signup-form {
        padding: var(--space-2xl);
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 var(--space-md);
    }

    .hero-container {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .hero-game-icon {
        width: 180px;
        height: 180px;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 2.5rem;
    }

    .title-line-3 {
        font-size: 1.2rem;
    }

    .legal-content {
        padding: var(--space-lg);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   HIGH CONTRAST
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(12, 20, 69, 0.8);
        --glass-border: rgba(125, 211, 252, 0.4);
        --text-secondary: rgba(255, 255, 255, 0.9);
        --text-muted: rgba(255, 255, 255, 0.7);
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
