/* ===================================================
   VERTEXNOOK - NEUMORPHISM MOBILE GAME WEBSITE
   Soft UI with bold character
   =================================================== */

/* ----- CSS CUSTOM PROPERTIES ----- */
:root {
    /* Core Palette */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7fff;
    --primary-glow: rgba(109, 93, 252, 0.35);
    --secondary: #e0e5ec;
    --accent: #ff6b9d;
    --accent-dark: #e0527f;
    --accent-light: #ff8db5;
    --accent-glow: rgba(255, 107, 157, 0.3);

    /* Neumorphism Base */
    --bg: #e0e5ec;
    --bg-dark: #c8ccd3;
    --bg-darker: #b0b5bc;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;
    --shadow-neu: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --shadow-neu-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --shadow-neu-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --shadow-neu-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --shadow-neu-inset-sm: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);

    /* Text Colors */
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #8a9199;
    --text-light: #b2bec3;
    --text-on-primary: #ffffff;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Sora', sans-serif;

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

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--primary);
    color: var(--text-on-primary);
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--shadow-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ----- CONTAINER ----- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

/* ----- UTILITY CLASSES ----- */
.text-accent {
    color: var(--accent);
}

.optional-label {
    color: var(--text-muted);
    font-size: 0.8em;
    font-weight: 400;
}

/* ===========================================
   COOKIE CONSENT BANNER
   =========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-modal);
    background: var(--bg);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-neu-sm);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-essential {
    background: var(--bg);
    color: var(--text-primary);
    box-shadow: var(--shadow-neu-sm);
}

.btn-cookie-essential:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-secondary);
    text-decoration: underline;
}

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

.cookie-settings-panel {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--bg-dark);
}

.cookie-setting-item {
    margin-bottom: var(--space-sm);
}

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

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

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--bg);
    transition: all var(--transition-base);
    padding: var(--space-md) 0;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--space-sm) 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.logo:hover .logo-icon {
    box-shadow: var(--shadow-neu-inset-sm);
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-text strong {
    font-weight: 800;
    color: var(--primary);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset-sm);
}

/* Nav Actions */
.nav-actions {
    flex-shrink: 0;
}

.btn-nav-signup {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 22px;
    background: var(--primary);
    color: var(--text-on-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 4px 4px 10px rgba(109, 93, 252, 0.3), -2px -2px 6px var(--shadow-light);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-nav-signup:hover {
    background: var(--primary-dark);
    color: var(--text-on-primary);
    transform: translateY(-2px);
    box-shadow: 6px 6px 14px rgba(109, 93, 252, 0.35), -3px -3px 8px var(--shadow-light);
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    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);
}

/* Mobile Nav */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-xs);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: var(--z-overlay);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-actions {
        display: none;
    }
}

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

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: 6px 6px 14px rgba(109, 93, 252, 0.3), -3px -3px 8px var(--shadow-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-on-primary);
    transform: translateY(-3px);
    box-shadow: 8px 8px 18px rgba(109, 93, 252, 0.35), -4px -4px 10px var(--shadow-light);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-neu-inset);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-neu);
}

.btn-secondary:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neu-lg);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-neu-inset);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-game {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    left: 30%;
    animation: floatShape 18s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 20%;
    right: 30%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: 10%;
    right: 10%;
    animation: floatShape 28s ease-in-out infinite;
}

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

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 18px;
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-sm);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--primary);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

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

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--bg-dark);
}

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

.hero-phone {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3436, #1a1e21);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 
        20px 20px 40px var(--shadow-dark),
        -10px -10px 30px var(--shadow-light),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1e21;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 28px);
    background: linear-gradient(160deg, #1a1040, #2d1b69, #1a1040);
    border-radius: 0 0 26px 26px;
    overflow: hidden;
    position: relative;
}

.phone-game-ui {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-score {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.game-level {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.game-lives {
    display: flex;
    gap: 3px;
    color: var(--accent);
    font-size: 0.7rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
    align-content: center;
}

.game-tile {
    aspect-ratio: 1;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: tilePulse 3s ease-in-out infinite;
}

.tile-purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 12px rgba(109, 93, 252, 0.4);
}

.tile-pink {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.tile-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4);
}

.active-tile {
    animation: activeGlow 1.5s ease-in-out infinite !important;
    transform: scale(1.08);
}

@keyframes tilePulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(0.95); opacity: 1; }
}

@keyframes activeGlow {
    0%, 100% { transform: scale(1.08); box-shadow: 0 0 20px rgba(109, 93, 252, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 0 30px rgba(109, 93, 252, 0.9); }
}

.game-tile:nth-child(2) { animation-delay: 0.3s; }
.game-tile:nth-child(3) { animation-delay: 0.6s; }
.game-tile:nth-child(4) { animation-delay: 0.9s; }
.game-tile:nth-child(5) { animation-delay: 1.2s; }
.game-tile:nth-child(6) { animation-delay: 0.2s; }
.game-tile:nth-child(8) { animation-delay: 0.5s; }
.game-tile:nth-child(9) { animation-delay: 0.8s; }
.game-tile:nth-child(10) { animation-delay: 1.1s; }
.game-tile:nth-child(11) { animation-delay: 0.4s; }
.game-tile:nth-child(12) { animation-delay: 0.7s; }

.game-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.game-progress-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { width: 60%; }
    50% { width: 75%; }
}

.game-action-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.game-btn-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.game-btn-big {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(109, 93, 252, 0.5);
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(109, 93, 252, 0.5); }
    50% { box-shadow: 0 6px 30px rgba(109, 93, 252, 0.8); }
}

.phone-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-sm);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent);
}

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

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

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

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

/* Hero 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;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--text-muted);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

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

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

    .hero-cta-group {
        justify-content: center;
    }

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

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================================
   SOCIAL PROOF TICKER
   =========================================== */
.social-proof-section {
    padding: var(--space-lg) 0;
    background: var(--bg);
    overflow: hidden;
    border-top: 1px solid var(--bg-dark);
    border-bottom: 1px solid var(--bg-dark);
}

.ticker-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: var(--space-2xl);
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

.ticker-item strong {
    color: var(--text-primary);
}

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

/* ===========================================
   SECTION COMMON STYLES
   =========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 18px;
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-sm);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.section-badge i {
    color: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

/* ===========================================
   GAMES SECTION
   =========================================== */
.games-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.game-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-neu-lg);
}

.game-card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-card-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gc-bg-1 { background: linear-gradient(135deg, #6d5dfc, #8b7fff); }
.gc-bg-2 { background: linear-gradient(135deg, #ff6b9d, #ff8db5); }
.gc-bg-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gc-bg-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.gc-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 22px
    );
}

.gc-icon-large {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
    transition: all var(--transition-base);
}

.game-card:hover .gc-icon-large {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.4);
}

.game-card-status {
    position: absolute;
    top: 14px;
    right: 14px;
}

.status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-beta {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
}

.status-soon {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

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

.game-card-tags {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu-inset-sm);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tag i {
    font-size: 0.65rem;
    color: var(--primary);
}

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

.game-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-dark);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.meta-item i {
    color: var(--primary);
    font-size: 0.75rem;
}

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

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

.feature-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neu-lg);
}

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-2xl);
}

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
}

.feature-card-large .feature-icon-wrap {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    box-shadow: var(--shadow-neu-inset);
    color: var(--accent);
}

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

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

.feature-detail-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.feature-detail-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
}

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

    .feature-card-large {
        grid-column: span 1;
    }
}

/* ===========================================
   COMMUNITY SECTION
   =========================================== */
.community-section {
    padding: var(--space-4xl) 0;
}

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

.community-stat-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.community-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neu-lg);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.3rem;
    color: var(--primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #27ae60;
    padding: 4px 10px;
    background: rgba(39, 174, 96, 0.08);
    border-radius: var(--radius-sm);
}

.stat-trend i {
    font-size: 0.7rem;
}

.stat-trend-live {
    color: var(--accent);
    background: rgba(255, 107, 157, 0.08);
}

.stat-trend-live i {
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 1024px) {
    .community-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .community-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-area {
    margin-top: var(--space-2xl);
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

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

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neu-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
    color: #ffc107;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

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

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-neu-lg);
}

.faq-item.active {
    box-shadow: var(--shadow-neu-inset);
}

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

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

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    box-shadow: var(--shadow-neu-inset-sm);
    transform: rotate(45deg);
    color: var(--accent);
}

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

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

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
}

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

.faq-answer-inner a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===========================================
   SIGNUP / LEAD FORM SECTION
   =========================================== */
.signup-section {
    padding: var(--space-4xl) 0;
}

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

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

.signup-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

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

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

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: var(--space-md);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--primary);
}

/* Form */
.signup-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-lg);
    padding: var(--space-2xl);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.input-wrap input::placeholder {
    color: var(--text-light);
}

.input-wrap input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-neu-inset), 0 0 0 3px var(--primary-glow);
}

.input-wrap input:focus + .input-icon,
.input-wrap input:focus ~ .input-icon {
    color: var(--primary);
}

.input-wrap input.error {
    border-color: #e74c3c;
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 18px;
}

/* Checkboxes */
.form-checkbox-group {
    margin-bottom: var(--space-md);
}

.form-checkbox-group label.checkbox-label {
    margin-bottom: 0;
}

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

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

.checkbox-custom {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    box-shadow: 2px 2px 6px rgba(109, 93, 252, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: var(--space-md);
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-message i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.form-success {
    background: rgba(39, 174, 96, 0.08);
    color: #27ae60;
    box-shadow: var(--shadow-neu-inset-sm);
}

.form-error-msg {
    background: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    box-shadow: var(--shadow-neu-inset-sm);
}

.form-error-msg a {
    color: #e74c3c;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-section {
    padding: var(--space-4xl) 0;
}

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

.contact-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neu-lg);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    box-shadow: var(--shadow-neu-inset);
    color: var(--accent);
}

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

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.contact-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 18px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu-sm);
    transition: all var(--transition-fast);
}

.contact-link:hover {
    box-shadow: var(--shadow-neu-inset-sm);
    color: var(--accent);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

.trust-inner {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu);
    padding: var(--space-2xl);
}

.trust-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-content h3 i {
    color: var(--primary);
}

.trust-content > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu-inset-sm);
}

.trust-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   RESPONSIBLE GAMING BANNER
   =========================================== */
.responsible-gaming-banner {
    padding: var(--space-xl) 0;
}

.rg-inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    border-left: 4px solid var(--accent);
}

.rg-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

.rg-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.rg-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.rg-age {
    flex-shrink: 0;
}

.age-badge {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 4px 4px 10px rgba(255, 107, 157, 0.3);
}

@media (max-width: 768px) {
    .rg-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--bg);
    margin-top: var(--space-2xl);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bg-dark), transparent);
}

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

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    box-shadow: var(--shadow-neu-inset-sm);
    color: var(--primary);
}

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

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

.footer-links-group li a,
.footer-links-group li span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--bg-dark);
}

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

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-age-badge {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ===========================================
   SOCIAL PROOF POPUP
   =========================================== */
.social-proof-popup {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: var(--z-toast);
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 320px;
    animation: slideInLeft 0.5s ease-out;
}

.social-proof-popup.hiding {
    animation: slideOutLeft 0.4s ease-in forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-120%); opacity: 0; }
}

.sp-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.sp-close:hover {
    color: var(--text-primary);
}

.sp-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sp-content {
    display: flex;
    flex-direction: column;
}

.sp-content strong {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.sp-content span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.sp-content small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===========================================
   BACK TO TOP
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--shadow-neu);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: var(--shadow-neu-inset);
    color: var(--accent);
}

/* ===========================================
   LEGAL PAGES
   =========================================== */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
}

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

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.legal-date {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-lg);
    padding: var(--space-3xl);
}

.legal-content section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid #f0f2f5;
}

.legal-content section:last-of-type {
    border-bottom: none;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.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 {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

.legal-content a:hover {
    color: var(--accent);
}

.legal-footer-note {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 2px solid #f0f2f5;
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e8ecf0;
}

.legal-table th {
    background: var(--bg);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-table td {
    color: var(--text-secondary);
}

.legal-table tr:nth-child(even) td {
    background: #fafbfc;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.gdpr-right-card {
    padding: var(--space-lg);
    background: #fafbfc;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    margin-top: 0 !important;
    font-size: 1.05rem !important;
}

.gdpr-right-card p:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-xl);
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

    .ticker-track {
        animation: none;
    }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================================
   NOISE TEXTURE OVERLAY
   =========================================== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
```

Now the JavaScript:

```javascript