/* ============================================================
   FLAPPY DUNK - LIMINAL DREAMCORE STYLESHEET
   A washed-out, ethereal, in-between-spaces design
   ============================================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    /* Core Liminal Palette */
    --clr-primary: #4a4a5a;
    --clr-secondary: #e8e4df;
    --clr-accent: #8b8ba0;
    --clr-bg-deep: #d5d1cc;
    --clr-bg-void: #c8c4be;
    --clr-bg-haze: #dedad5;
    --clr-text: #3e3e4e;
    --clr-text-muted: #7a7a8a;
    --clr-text-ghost: #a0a0b0;
    --clr-white-fog: #f0eeeb;
    --clr-white: #f7f5f2;
    --clr-dark: #2e2e3a;
    --clr-border: rgba(74, 74, 90, 0.12);
    --clr-border-strong: rgba(74, 74, 90, 0.25);
    --clr-shadow: rgba(46, 46, 58, 0.08);
    --clr-shadow-deep: rgba(46, 46, 58, 0.16);
    --clr-overlay: rgba(74, 74, 90, 0.04);
    --clr-success: #6a8a6a;
    --clr-error: #9a6a6a;
    --clr-lavender-faded: #b8b0c8;
    --clr-lavender-deep: #9690a8;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --border-radius: 4px;
    --border-radius-lg: 12px;
    --border-radius-xl: 24px;

    /* 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-normal: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    /* Blur */
    --blur-sm: 8px;
    --blur-md: 20px;
    --blur-lg: 40px;
    --blur-xl: 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: 300;
    color: var(--clr-text);
    background-color: var(--clr-secondary);
    line-height: 1.7;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Noise texture overlay on body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

a:hover,
a:focus-visible {
    color: var(--clr-primary);
}

a:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

button:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--clr-primary);
}

::selection {
    background: var(--clr-lavender-faded);
    color: var(--clr-dark);
}

/* --- VIGNETTE OVERLAY --- */
.vignette-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 50%,
        rgba(74, 74, 90, 0.06) 70%,
        rgba(46, 46, 58, 0.18) 100%
    );
}

/* --- AMBIENT PARTICLES --- */
.ambient-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--clr-lavender-faded);
    opacity: 0;
    animation: particleFloat 20s infinite var(--ease-in-out);
}

.particle-1 {
    width: 4px; height: 4px;
    top: 15%; left: 10%;
    animation-delay: 0s;
    animation-duration: 22s;
}
.particle-2 {
    width: 6px; height: 6px;
    top: 30%; left: 80%;
    animation-delay: 3s;
    animation-duration: 18s;
}
.particle-3 {
    width: 3px; height: 3px;
    top: 60%; left: 25%;
    animation-delay: 6s;
    animation-duration: 25s;
}
.particle-4 {
    width: 5px; height: 5px;
    top: 80%; left: 70%;
    animation-delay: 9s;
    animation-duration: 20s;
}
.particle-5 {
    width: 4px; height: 4px;
    top: 45%; left: 50%;
    animation-delay: 2s;
    animation-duration: 24s;
}
.particle-6 {
    width: 7px; height: 7px;
    top: 10%; left: 60%;
    animation-delay: 5s;
    animation-duration: 19s;
}
.particle-7 {
    width: 3px; height: 3px;
    top: 70%; left: 15%;
    animation-delay: 8s;
    animation-duration: 23s;
}
.particle-8 {
    width: 5px; height: 5px;
    top: 90%; left: 45%;
    animation-delay: 11s;
    animation-duration: 21s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    10% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.15;
        transform: translate(60px, -80px) scale(1.3);
    }
    90% {
        opacity: 0.2;
    }
}

/* --- COOKIE CONSENT --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(232, 228, 223, 0.92);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border-top: 1px solid var(--clr-border-strong);
    padding: var(--space-md) var(--space-lg);
    animation: slideUpCookie 0.6s var(--ease-out) both;
}

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

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.03em;
}

.cookie-text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--clr-border-strong);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: transparent;
    color: var(--clr-primary);
}

.cookie-btn-accept {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.cookie-btn-accept:hover {
    background: var(--clr-dark);
    border-color: var(--clr-dark);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
    background: var(--clr-overlay);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: var(--space-sm) auto 0;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--clr-border);
}

.cookie-setting-row {
    padding: var(--space-xs) 0;
}

.cookie-setting-row label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.cookie-setting-row input[type="checkbox"] {
    accent-color: var(--clr-primary);
    width: 16px;
    height: 16px;
}

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

/* --- NAVIGATION --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(232, 228, 223, 0.65);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border-bottom: 1px solid var(--clr-border);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(232, 228, 223, 0.88);
    box-shadow: 0 4px 30px var(--clr-shadow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    transition: color var(--transition-fast);
}

.logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-lavender-faded);
    opacity: 0.7;
    animation: logoPulse 3s infinite var(--ease-in-out);
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

.nav-logo:hover .logo-text {
    color: var(--clr-accent);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    text-decoration: none;
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--clr-primary);
}

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

.nav-link-cta {
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--clr-dark);
    color: var(--clr-white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--clr-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        background: rgba(232, 228, 223, 0.96);
        backdrop-filter: blur(var(--blur-lg));
        -webkit-backdrop-filter: blur(var(--blur-lg));
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.btn-primary:hover {
    background: var(--clr-dark);
    border-color: var(--clr-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--clr-shadow-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-border-strong);
}

.btn-ghost:hover {
    background: var(--clr-overlay);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- SECTION COMMON --- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-text-ghost);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--clr-primary);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--clr-accent);
    margin: var(--space-sm) auto 0;
    opacity: 0.5;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

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

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

.hero-bg-1 {
    background: linear-gradient(
        135deg,
        var(--clr-secondary) 0%,
        var(--clr-bg-haze) 30%,
        var(--clr-bg-deep) 60%,
        var(--clr-bg-void) 100%
    );
}

.hero-bg-2 {
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(184, 176, 200, 0.2) 0%,
        transparent 60%
    );
}

.hero-bg-3 {
    background: radial-gradient(
        ellipse at 80% 30%,
        rgba(139, 139, 160, 0.1) 0%,
        transparent 50%
    );
    animation: heroHaze 12s infinite alternate var(--ease-in-out);
}

@keyframes heroHaze {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    max-width: 600px;
    min-width: 0;
    animation: heroFadeIn 1.2s var(--ease-out) both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding: 0.4rem 1rem;
    border: 1px solid var(--clr-border-strong);
    border-radius: 100px;
    background: rgba(232, 228, 223, 0.5);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
}

.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-success);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(106, 138, 106, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(106, 138, 106, 0); }
}

.badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 0.95;
    color: var(--clr-primary);
}

.title-line-1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: -0.02em;
    animation: titleLine1 1s var(--ease-out) 0.2s both;
}

.title-line-2 {
    font-size: clamp(4rem, 12vw, 8.5rem);
    letter-spacing: -0.03em;
    font-style: italic;
    color: var(--clr-accent);
    animation: titleLine2 1s var(--ease-out) 0.4s both;
}

@keyframes titleLine1 {
    from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes titleLine2 {
    from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 480px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    animation: heroFadeIn 1.2s var(--ease-out) 0.8s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    animation: heroFadeIn 1.2s var(--ease-out) 1s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-ghost);
    margin-top: 0.2rem;
}

/* Hero floating image */
.hero-image-float {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    animation: heroImageFloat 1.5s var(--ease-out) 0.5s both;
}

@keyframes heroImageFloat {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(60px) scale(0.9);
        filter: blur(12px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
        filter: blur(0);
    }
}

.hero-image-wrapper {
    position: relative;
    animation: gentleFloat 6s infinite var(--ease-in-out);
}

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

.hero-game-icon {
    width: 280px;
    height: 280px;
    border-radius: var(--border-radius-xl);
    object-fit: cover;
    filter: saturate(0.7) brightness(1.05);
    box-shadow:
        0 20px 60px var(--clr-shadow-deep),
        0 0 120px rgba(139, 139, 160, 0.15);
    transition: filter var(--transition-slow);
}

.hero-game-icon:hover {
    filter: saturate(0.85) brightness(1.08);
}

.hero-image-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(184, 176, 200, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: glowPulse 4s infinite alternate var(--ease-in-out);
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: heroFadeIn 1.2s var(--ease-out) 1.5s both;
}

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

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.3); }
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clr-text-ghost);
}

/* --- TICKER SECTION --- */
.ticker-section {
    padding: var(--space-md) 0;
    background: rgba(74, 74, 90, 0.04);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-track {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: tickerScroll 40s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--clr-text-ghost);
    text-transform: uppercase;
}

.ticker-separator {
    margin: 0 var(--space-lg);
    color: var(--clr-border-strong);
    font-size: 0.6rem;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

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

.about-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
}

.about-body {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

.about-card {
    padding: var(--space-lg);
    background: rgba(232, 228, 223, 0.5);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--clr-lavender-faded);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.about-card:hover {
    transform: translateX(8px);
    border-color: var(--clr-border-strong);
    box-shadow: 0 8px 30px var(--clr-shadow);
}

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

.card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--clr-lavender-faded);
    line-height: 1;
    margin-bottom: var(--space-xs);
    opacity: 0.6;
}

.card-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.card-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* --- SCREENSHOTS SECTION --- */
.screenshots-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        180deg,
        var(--clr-secondary) 0%,
        var(--clr-bg-haze) 50%,
        var(--clr-secondary) 100%
    );
    position: relative;
    z-index: 1;
}

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

.screenshot-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.screenshot-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-item-1 { transition-delay: 0s; }
.screenshot-item-2 { transition-delay: 0.15s; transform: translateY(60px); }
.screenshot-item-3 { transition-delay: 0.3s; }
.screenshot-item-4 { transition-delay: 0.45s; transform: translateY(60px); }

.screenshot-item-2.visible,
.screenshot-item-4.visible {
    transform: translateY(20px);
}

.screenshot-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg-void);
    transition: all var(--transition-normal);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    filter: saturate(0.6) brightness(1.02);
    transition: all var(--transition-slow);
}

.screenshot-frame:hover img {
    filter: saturate(0.8) brightness(1.05);
    transform: scale(1.03);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(74, 74, 90, 0.15) 100%
    );
    pointer-events: none;
}

.screenshot-frame:hover {
    border-color: var(--clr-border-strong);
    box-shadow: 0 12px 40px var(--clr-shadow-deep);
    transform: translateY(-4px);
}

.screenshot-label {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-ghost);
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    padding: var(--space-xl) var(--space-lg);
    background: rgba(232, 228, 223, 0.4);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-lavender-faded);
    transition: width var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-border-strong);
    box-shadow: 0 16px 50px var(--clr-shadow);
    background: rgba(232, 228, 223, 0.65);
}

.feature-card:hover::after {
    width: 60%;
}

.feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(139, 139, 160, 0.08);
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(139, 139, 160, 0.15);
    transform: scale(1.1);
}

.feature-icon {
    width: 26px;
    height: 26px;
    color: var(--clr-accent);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* --- LIVE SECTION --- */
.live-section {
    padding: var(--space-2xl) 0;
    background: rgba(74, 74, 90, 0.04);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    z-index: 1;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.live-card {
    padding: var(--space-lg);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-success);
    animation: badgePulse 1.5s infinite;
}

.live-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-success);
    font-weight: 500;
}

.live-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.live-desc {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-ghost);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--clr-primary);
    text-align: left;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

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

.faq-toggle-icon {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--clr-text-ghost);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- SIGNUP SECTION --- */
.signup-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        180deg,
        var(--clr-secondary) 0%,
        var(--clr-bg-haze) 100%
    );
    position: relative;
    z-index: 1;
}

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

.signup-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--clr-accent);
    flex-shrink: 0;
}

/* Form */
.signup-form-wrap {
    padding: var(--space-xl);
    background: rgba(247, 245, 242, 0.7);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px var(--clr-shadow);
}

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

.form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--clr-text);
    background: rgba(232, 228, 223, 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.form-input::placeholder {
    color: var(--clr-text-ghost);
}

.form-input:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: rgba(247, 245, 242, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 139, 160, 0.12);
}

.form-input.error {
    border-color: var(--clr-error);
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-error);
    margin-top: 0.3rem;
    min-height: 1.1em;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

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

.checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--clr-border-strong);
    border-radius: 3px;
    background: rgba(232, 228, 223, 0.5);
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid var(--clr-white);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
}

.checkbox-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--clr-white);
    border-radius: 50%;
    animation: spinLoader 0.6s linear infinite;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

/* Success message */
.form-success {
    text-align: center;
    padding: var(--space-xl) 0;
    animation: fadeInSuccess 0.6s var(--ease-out) both;
}

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

.success-icon-wrap {
    margin-bottom: var(--space-md);
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--clr-success);
    margin: 0 auto;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.success-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.form-error-message {
    padding: var(--space-sm);
    background: rgba(154, 106, 106, 0.08);
    border: 1px solid rgba(154, 106, 106, 0.2);
    border-radius: var(--border-radius);
    margin-top: var(--space-sm);
}

.form-error-message p {
    font-size: 0.85rem;
    color: var(--clr-error);
}

.form-error-message a {
    color: var(--clr-error);
    text-decoration: underline;
}

/* --- TRUST SECTION --- */
.trust-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
    position: relative;
    z-index: 1;
}

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

.trust-block {
    padding: var(--space-lg);
    background: rgba(232, 228, 223, 0.4);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.trust-block:hover {
    border-color: var(--clr-border-strong);
    box-shadow: 0 8px 30px var(--clr-shadow);
}

.trust-block h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.trust-block p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.trust-block a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--clr-primary);
    color: var(--clr-bg-haze);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(232, 228, 223, 0.1);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--clr-secondary);
    display: block;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(232, 228, 223, 0.5);
    font-style: italic;
    font-family: var(--font-display);
}

.footer-links-grid {
    display: flex;
    gap: var(--space-2xl);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 228, 223, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.82rem;
    color: rgba(232, 228, 223, 0.6);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--clr-secondary);
}

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

.footer-address p,
.footer-copy p {
    font-size: 0.72rem;
    color: rgba(232, 228, 223, 0.35);
    letter-spacing: 0.05em;
}

/* --- LEGAL PAGES --- */
.legal-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: linear-gradient(
        180deg,
        var(--clr-bg-deep) 0%,
        var(--clr-secondary) 100%
    );
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.legal-hero-date {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--clr-text-ghost);
}

.legal-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 12px 40px var(--clr-shadow);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--clr-border);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.legal-content p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

.legal-content ul li {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: var(--space-sm);
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-accent);
    opacity: 0.5;
}

.legal-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-footer-note {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border);
}

.legal-footer-note p {
    font-size: 0.8rem;
    color: var(--clr-text-ghost);
}

/* --- SCROLL REVEAL ANIMATION --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--space-3xl) + 2rem);
        gap: var(--space-xl);
    }

    .hero-image-float {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

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

    @keyframes heroImageFloat {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            filter: blur(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }

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

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

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

    .signup-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

@media (max-width: 640px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

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

    .live-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

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

    .footer-links-grid {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

    .signup-form-wrap {
        padding: var(--space-lg);
    }

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

    .nav-container {
        padding: var(--space-sm);
    }

    .cookie-consent {
        padding: var(--space-sm);
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

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

/* --- PRINT STYLES --- */
@media print {
    .vignette-overlay,
    .ambient-particles,
    .cookie-consent,
    .site-header,
    .hero-scroll-indicator,
    .ticker-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    body::before {
        display: none;
    }
}

/* --- 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;
    }

    .screenshot-item,
    .feature-card,
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
```

Now the JavaScript:

```javascript