/* ============================================
   WHIMBASE - Neumorphism Design System
   Mobile Game Website
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Palette */
    --primary: #6d5dfc;
    --primary-light: #8b7eff;
    --primary-dark: #5346d4;
    --primary-glow: rgba(109, 93, 252, 0.3);

    /* Secondary / Background */
    --bg: #e0e5ec;
    --bg-light: #f0f5fc;
    --bg-dark: #c8cdd5;

    /* Accent */
    --accent: #ff6b9d;
    --accent-light: #ff8fb8;
    --accent-dark: #e0527e;

    /* Neumorphism Shadows */
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --neu-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neu-shadow-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-shadow-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --neu-shadow-xl: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    --neu-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --neu-inset-sm: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    --neu-inset-lg: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);

    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #5a6578;
    --text-muted: #8896a8;
    --text-light: #ffffff;

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

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-round: 50%;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-base: 1;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cookie: 1100;
    --z-age-gate: 1200;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(109, 93, 252, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(109, 93, 252, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

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

button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

/* ---------- Container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: var(--z-base);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn-primary:hover {
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover span,
.btn-primary:hover i {
    position: relative;
    z-index: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

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

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

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: var(--bg);
    color: var(--primary);
    box-shadow: var(--neu-shadow);
}

.btn-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn-block:hover {
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block:hover::before {
    opacity: 1;
}

.btn-block span,
.btn-block i {
    position: relative;
    z-index: 1;
}

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

/* ---------- Section Styles ---------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--bg);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    box-shadow: var(--neu-shadow-sm);
    margin-bottom: var(--space-md);
}

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

.section-subtitle {
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    padding: var(--space-lg);
    background: var(--bg);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    animation: slideUpCookie 0.5s ease forwards;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

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

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.cookie-text p:first-child {
    color: var(--text-primary);
}

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

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    box-shadow: 4px 4px 8px var(--shadow-dark);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px var(--shadow-dark);
}

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

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

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

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

.cookie-settings-panel {
    max-width: 1200px;
    margin: var(--space-md) auto 0;
    padding: var(--space-lg);
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-inset);
}

.cookie-setting-item {
    padding: var(--space-sm) 0;
}

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

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

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

/* ============================================
   AGE GATE MODAL
   ============================================ */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-age-gate);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeInOverlay 0.4s ease;
}

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

.age-gate-box {
    background: var(--bg);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-xl);
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: scaleInBox 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleInBox {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.age-gate-icon {
    width: 80px;
    height: 80px;
    background: var(--bg);
    box-shadow: var(--neu-shadow);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.age-gate-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.age-gate-box h2 {
    margin-bottom: var(--space-md);
    font-size: 1.6rem;
}

.age-gate-box > p {
    margin-bottom: var(--space-xl);
    font-size: 0.95rem;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-age {
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
}

.btn-age-yes {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    box-shadow: 4px 4px 12px var(--shadow-dark);
}

.btn-age-yes:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 18px var(--shadow-dark);
}

.btn-age-no {
    background: var(--bg);
    color: var(--text-secondary);
    box-shadow: var(--neu-shadow-sm);
}

.btn-age-no:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.age-gate-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.main-header.scrolled {
    background: rgba(224, 229, 236, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(163, 177, 198, 0.3);
    padding: var(--space-sm) 0;
}

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

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

.logo-shape {
    width: 44px;
    height: 44px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.logo-shape i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color var(--transition);
}

.nav-logo:hover .logo-shape {
    box-shadow: var(--neu-inset-sm);
}

.nav-logo:hover .logo-shape i {
    color: var(--accent);
}

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

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

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

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light) !important;
    box-shadow: 4px 4px 8px var(--shadow-dark);
    margin-left: var(--space-sm);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 14px var(--shadow-dark);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

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

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

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

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

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

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(109, 93, 252, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255, 107, 157, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(109, 93, 252, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating shapes */
.hero-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: var(--radius-xl);
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    opacity: 0.6;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    border-radius: var(--radius-round);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 25%;
    right: 12%;
    border-radius: var(--radius-md);
    animation: floatShape 6s ease-in-out infinite 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape 10s ease-in-out infinite 2s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 8%;
    border-radius: var(--radius-round);
    animation: floatShape 7s ease-in-out infinite 0.5s;
}

.shape-5 {
    width: 35px;
    height: 35px;
    bottom: 30%;
    right: 25%;
    border-radius: var(--radius-sm);
    animation: floatShape 9s ease-in-out infinite 3s;
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(2deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease forwards 0.3s;
}

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

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

.hero-badge i {
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title {
    margin-bottom: var(--space-lg);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

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

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-glow), rgba(255, 107, 157, 0.2));
    border-radius: var(--radius-pill);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

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

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

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

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 0.8s ease forwards 0.6s;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--bg);
    border-radius: 40px;
    box-shadow: var(--neu-shadow-xl);
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #dde3ec, #d4dae5);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--neu-inset);
}

.screen-content {
    width: 100%;
    height: 100%;
    padding: 44px 16px 16px;
}

.game-ui-mock {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.game-score-mock {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
}

.game-score-mock i {
    color: var(--accent);
    font-size: 0.7rem;
}

.game-level-mock {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
}

.game-grid-mock {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    padding: 8px;
}

.grid-cell {
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    animation: cellPulse 3s ease-in-out infinite;
}

.gc-1 { background: linear-gradient(135deg, #a78bfa, #818cf8); box-shadow: none; animation-delay: 0s; }
.gc-2 { background: linear-gradient(135deg, #f472b6, #ec4899); box-shadow: none; animation-delay: 0.3s; }
.gc-3 { animation-delay: 0.6s; }
.gc-4 { animation-delay: 0.9s; }
.gc-5 { background: linear-gradient(135deg, #34d399, #10b981); box-shadow: none; animation-delay: 1.2s; }
.gc-6 { animation-delay: 1.5s; }
.gc-7 { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: none; animation-delay: 1.8s; }
.gc-8 { animation-delay: 2.1s; }
.gc-9 { background: linear-gradient(135deg, #a78bfa, #818cf8); box-shadow: none; animation-delay: 2.4s; }
.gc-10 { animation-delay: 0.2s; }
.gc-11 { background: linear-gradient(135deg, #f472b6, #ec4899); box-shadow: none; animation-delay: 0.5s; }
.gc-12 { background: linear-gradient(135deg, #60a5fa, #3b82f6); box-shadow: none; animation-delay: 0.8s; }

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

.game-bar-mock {
    height: 10px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-pill);
    animation: barGrow 2s ease-in-out infinite alternate;
}

@keyframes barGrow {
    from { width: 55%; }
    to { width: 85%; }
}

.game-actions-mock {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
}

.action-btn-mock {
    width: 44px;
    height: 44px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.action-play {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 4px 4px 8px var(--shadow-dark);
    width: 52px;
    height: 52px;
    margin-top: -4px;
}

.phone-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(109, 93, 252, 0.15), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

/* 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);
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 1.2s;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-pill);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-section {
    padding: var(--space-lg) 0;
    overflow: hidden;
    background: var(--bg);
    box-shadow: inset 0 4px 12px rgba(163, 177, 198, 0.2);
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

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

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

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

.ticker-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: var(--space-xs);
}

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

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

.feature-card {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

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

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

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: all var(--transition);
}

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

.feature-card:hover .feature-icon i {
    color: var(--accent);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.gameplay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

.gameplay-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-4xl);
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    max-width: 800px;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
}

.step-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.step-card[data-animate="slide-left"] {
    transform: translateX(30px);
}

.step-card[data-animate="slide-left"].animated {
    transform: translateX(0);
}

.step-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    color: var(--bg);
    text-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
    line-height: 1;
    min-width: 70px;
    text-align: center;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-illustration {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ill-circle {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-round);
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
}

.ill-device {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--primary);
}

.ill-sparkles {
    position: absolute;
    inset: -10px;
    z-index: 2;
}

.ill-sparkles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: var(--radius-round);
    animation: sparkle 2s ease-in-out infinite;
}

.ill-sparkles span:nth-child(1) { top: 5px; right: 10px; animation-delay: 0s; }
.ill-sparkles span:nth-child(2) { bottom: 10px; left: 5px; animation-delay: 0.7s; }
.ill-sparkles span:nth-child(3) { top: 50%; right: 0; animation-delay: 1.4s; }

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

.step-content h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.step-content p {
    font-size: 0.9rem;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
}

.connector-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--shadow-dark), var(--primary), var(--shadow-dark));
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-round);
    flex-shrink: 0;
}

/* Game Modes */
.modes-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.6rem;
}

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

.mode-card {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.mode-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.mode-card-featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg), var(--bg)) padding-box,
                linear-gradient(135deg, var(--primary), var(--accent)) border-box;
}

.mode-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mode-icon-bg {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.mode-bg-1 {
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.15), rgba(109, 93, 252, 0.05));
    color: var(--primary);
}

.mode-bg-2 {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 107, 157, 0.05));
    color: var(--accent);
}

.mode-bg-3 {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    color: #10b981;
}

.mode-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.mode-card p {
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
}

.mode-difficulty {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-xs);
}

.diff-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
}

.diff-dot.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: none;
}

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

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

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

.testimonial-card {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.testimonial-stars {
    margin-bottom: var(--space-md);
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.7;
}

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

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

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

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

/* Live Counters */
.live-counters {
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 18px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: var(--radius-round);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

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

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

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

.counter-icon {
    width: 50px;
    height: 50px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary);
    font-size: 1.1rem;
}

.counter-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

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

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

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

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

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.92rem;
    line-height: 1.8;
}

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

/* ============================================
   SIGNUP 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-lg);
}

.signup-info .section-tag {
    margin-bottom: var(--space-lg);
}

.signup-info .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.signup-info > p {
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

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

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.benefit-icon i {
    font-size: 0.75rem;
    color: #10b981;
}

.signup-benefits li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.signup-trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

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

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

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

.signup-form h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.form-subtitle {
    margin-bottom: var(--space-xl);
    font-size: 0.9rem;
}

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

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

.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);
}

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

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

.input-wrap input:focus {
    box-shadow: var(--neu-inset-lg), 0 0 0 3px rgba(109, 93, 252, 0.15);
}

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

.input-wrap input.error {
    box-shadow: var(--neu-inset), 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-error {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.8rem;
    color: #ef4444;
    min-height: 1.2em;
}

/* Checkbox */
.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 !important;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 2px 2px 4px var(--shadow-dark);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

/* Form Message */
.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    box-shadow: inset 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    box-shadow: inset 0 0 0 2px rgba(239, 68, 68, 0.2);
}

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

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

.trust-card {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(20px);
}

.trust-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

.trust-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.trust-card p {
    font-size: 0.85rem;
}

.responsible-gaming-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-inset);
}

.responsible-gaming-notice i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.responsible-gaming-notice p {
    font-size: 0.88rem;
}

.responsible-gaming-notice a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg);
    padding-top: var(--space-3xl);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

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

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-shape {
    width: 38px;
    height: 38px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-description {
    font-size: 0.88rem;
    margin-bottom: var(--space-lg);
}

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

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

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

.footer-links-group h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition);
}

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

.footer-links-group a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(163, 177, 198, 0.3);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-legal-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding: 140px 0 var(--space-3xl);
    text-align: center;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

.legal-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: var(--bg);
    box-shadow: var(--neu-shadow);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.legal-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.legal-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: var(--space-md);
}

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

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #f6f9ff;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(109, 93, 252, 0.15);
    color: var(--text-primary);
}

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

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

.legal-content p {
    margin-bottom: var(--space-md);
    font-size: 0.92rem;
}

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

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

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

.legal-content li {
    margin-bottom: var(--space-sm);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.legal-footer-note {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(109, 93, 252, 0.15);
    text-align: center;
}

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

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.gdpr-right-card {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
}

.gdpr-right-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.12), rgba(109, 93, 252, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-size: 1.2rem;
}

.gdpr-right-card h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.gdpr-right-card p {
    font-size: 0.9rem;
}

.gdpr-right-card ul {
    margin-bottom: var(--space-sm);
}

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

.gdpr-table th {
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gdpr-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(163, 177, 198, 0.2);
    color: var(--text-secondary);
}

.gdpr-table tr:hover td {
    background: rgba(109, 93, 252, 0.03);
}

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

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: -1;
    }

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

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

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

    .modes-grid .mode-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 450px;
        margin: 0 auto;
    }

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

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

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

    .signup-info {
        text-align: center;
    }

    .signup-benefits li {
        justify-content: center;
    }

    .signup-trust {
        justify-content: center;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-sm);
        transition: right var(--transition-slow);
        z-index: var(--z-nav);
    }

    .nav-menu.active {
        right: 0;
    }

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

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

    .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: var(--space-md);
    }

    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

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

    .hero-stats {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 30px;
        padding: 8px;
    }

    .phone-notch {
        width: 90px;
        height: 22px;
        top: 8px;
    }

    .phone-screen {
        border-radius: 24px;
    }

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

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .step-number {
        font-size: 2.2rem;
    }

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

    .modes-grid .mode-card:last-child {
        grid-column: auto;
        max-width: none;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .counter-value {
        font-size: 1.4rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

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

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

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

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

    .btn-cookie {
        flex: 1;
        min-width: 0;
    }

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

    .gdpr-table {
        display: block;
        overflow-x: auto;
    }

    .responsible-gaming-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

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

    .age-gate-box {
        padding: var(--space-xl) var(--space-lg);
    }

    .footer-legal-badges {
        flex-wrap: wrap;
    }
}

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

/* ---------- Print Styles ---------- */
@media print {
    .main-header,
    .cookie-banner,
    .age-gate-overlay,
    .hero-floating-shapes,
    .social-proof-section,
    .hero-scroll-indicator,
    .footer-social {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        background: white;
    }
}
```

Now the JavaScript file:

```javascript