/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
    /* Primary Palette */
    --primary: #0c1445;
    --primary-deep: #060a2e;
    --primary-mid: #111b5e;
    --secondary: #ffffff;
    --accent: #7dd3fc;
    --accent-bright: #a5e4ff;
    --accent-dim: #4fb8e8;

    /* Glass Palette */
    --glass-bg: rgba(12, 20, 69, 0.45);
    --glass-bg-strong: rgba(12, 20, 69, 0.65);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-bg-lighter: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(125, 211, 252, 0.2);
    --glass-border-bright: rgba(125, 211, 252, 0.4);
    --glass-shadow: rgba(0, 0, 0, 0.3);

    /* Chromatic */
    --chroma-red: rgba(255, 100, 130, 0.25);
    --chroma-blue: rgba(100, 160, 255, 0.25);
    --chroma-green: rgba(100, 255, 180, 0.2);
    --chroma-purple: rgba(180, 100, 255, 0.25);

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #060a2e 0%, #0c1445 20%, #1a1060 40%, #251570 55%, #1a2060 70%, #0a2040 85%, #082030 100%);
    --shimmer-gradient: linear-gradient(135deg, rgba(125,211,252,0.1) 0%, rgba(180,100,255,0.15) 25%, rgba(125,211,252,0.05) 50%, rgba(255,100,180,0.1) 75%, rgba(125,211,252,0.1) 100%);

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

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 8rem);
    --container-max: 1280px;
    --container-pad: clamp(1rem, 4vw, 2rem);

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-blob: 60% 40% 50% 50% / 50% 60% 40% 50%;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.7s var(--ease-out);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

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

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-out);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow:
        0 -10px 40px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05),
        2px 0 8px var(--chroma-red),
        -2px 0 8px var(--chroma-blue);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

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

.cookie-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cookie-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.cookie-btn-accept:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}

.cookie-btn-essential {
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
}

.cookie-btn-essential:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-bright);
}

.cookie-btn-decline {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.cookie-btn-decline:hover {
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   AGE GATE
   ============================================================ */

.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(6, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border-bright);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08),
        3px 0 12px var(--chroma-red),
        -3px 0 12px var(--chroma-blue);
    animation: floatIn 0.6s var(--ease-spring);
}

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

.age-gate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(125,211,252,0.3);
}

.age-gate-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.age-gate-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.age-gate-sub {
    font-size: 0.85rem !important;
    opacity: 0.6 !important;
    margin-top: 0.3rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    min-width: 140px;
}

.age-btn-yes {
    background: var(--accent);
    color: var(--primary);
}

.age-btn-yes:hover {
    background: var(--accent-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(125,211,252,0.4);
}

.age-btn-no {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--secondary);
}

.age-btn-no:hover {
    background: rgba(255,100,100,0.15);
    border-color: rgba(255,100,100,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1rem 0;
    transition: all var(--transition-med);
}

.main-nav.scrolled {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.6rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--secondary);
    z-index: 100;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), rgba(180,100,255,0.8));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(125,211,252,0.3);
    transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

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

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: var(--glass-bg-light);
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: var(--radius-md) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--accent-bright) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125,211,252,0.3);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem var(--container-pad) 4rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180,100,255,0.25), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,100,180,0.2), transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(100,255,200,0.15), transparent 70%);
    top: 20%;
    right: 25%;
    animation-delay: -15s;
    border-radius: 45% 55% 60% 40% / 60% 45% 55% 45%;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.1) rotate(5deg); }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(15px, 35px) scale(1.05) rotate(4deg); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 620px;
    z-index: 2;
    text-align: left;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge i {
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.title-line-1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: rgba(255,255,255,0.85);
    animation-delay: 0.3s;
}

.title-line-2 {
    font-size: clamp(3rem, 7vw, 5rem);
    animation-delay: 0.45s;
}

.title-highlight {
    background: linear-gradient(135deg, var(--accent), #b464ff, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.75s both;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-bright);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(125,211,252,0.35);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), #b464ff, var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-fast);
    filter: blur(10px);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

.btn-ghost {
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--glass-bg-lighter);
    border-color: var(--glass-border-bright);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.9s both;
}

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

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

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    z-index: 2;
    margin-left: 3rem;
    animation: fadeSlideUp 1s var(--ease-out) 0.5s both;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f23);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        4px 0 15px var(--chroma-red),
        -4px 0 15px var(--chroma-blue),
        0 4px 15px var(--chroma-purple);
    transform: rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s var(--ease-out);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-frame:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(5deg) translateY(-15px); }
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: #0a0a1a;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 28px);
    background: linear-gradient(180deg, #0a0f30, #151040, #0a1535);
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.game-health {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
}

.health-bar {
    width: 60px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.health-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #ff4466, #ff8844, #44ff88);
    border-radius: 3px;
    animation: healthPulse 3s ease-in-out infinite;
}

@keyframes healthPulse {
    0%, 100% { width: 75%; }
    50% { width: 65%; }
}

.game-score {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.game-character {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.character-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(125,211,252,0.2), transparent 70%);
    border-radius: 50%;
    animation: characterGlow 3s ease-in-out infinite;
}

@keyframes characterGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.character-icon {
    font-size: 3.5rem;
    color: var(--accent);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(125,211,252,0.5));
}

.game-ui-bottom {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    align-items: center;
}

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

.game-btn-main {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #b464ff);
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(125,211,252,0.3);
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
    border-radius: 40px 40px 0 0;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    animation: fadeSlideUp 0.8s var(--ease-out) 1.2s both;
}

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

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */

.social-proof-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
}

.proof-ticker {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 20s linear infinite;
    width: max-content;
}

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

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0.7;
}

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

/* ============================================================
   SECTION COMMON
   ============================================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--shimmer-gradient);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity var(--transition-med);
    animation: shimmerBg 8s ease-in-out infinite;
}

@keyframes shimmerBg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-bright);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        3px 0 10px var(--chroma-red),
        -3px 0 10px var(--chroma-blue);
}

.about-card-large {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(125,211,252,0.15), rgba(180,100,255,0.1));
    border: 1px solid rgba(125,211,252,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.about-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-card-decoration {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.deco-circle {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(125,211,252,0.1);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: decoRotate 20s linear infinite;
}

.deco-circle-2 {
    width: 80px;
    height: 80px;
    right: 20px;
    border-color: rgba(180,100,255,0.1);
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes decoRotate {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-bright);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        2px 0 8px var(--chroma-red),
        -2px 0 8px var(--chroma-blue);
}

.feature-card-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.feature-card-reverse {
    flex-direction: row-reverse;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(125,211,252,0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.feature-content p,
.feature-card > p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.feature-card > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.feature-list li i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-visual {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-orb {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border: 2px solid rgba(125,211,252,0.15);
    border-radius: 50%;
    animation: orbSpin 10s linear infinite;
}

.orb-ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(125,211,252,0.15);
}

.orb-ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(180,100,255,0.15);
    animation-direction: reverse;
    animation-duration: 8s;
}

.orb-ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(255,100,180,0.1);
    animation-duration: 6s;
}

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

.feature-visual-icon {
    font-size: 2.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 15px rgba(125,211,252,0.4));
    position: relative;
    z-index: 2;
}

.feature-icon-wrap {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0.08;
}

.feature-icon-large {
    font-size: 4rem;
}

/* Visual hex grid */
.visual-hex-grid {
    position: relative;
    width: 180px;
    height: 180px;
}

.hex {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(125,211,252,0.08);
    border: 1px solid rgba(125,211,252,0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulse 4s ease-in-out infinite;
}

.hex-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hex-2 { top: 35px; left: 15%; animation-delay: 0.3s; }
.hex-3 { top: 35px; right: 15%; animation-delay: 0.6s; }
.hex-4 { top: 75px; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; background: rgba(180,100,255,0.12); border-color: rgba(180,100,255,0.2); }
.hex-5 { top: 75px; left: 5%; animation-delay: 1.2s; }
.hex-6 { top: 75px; right: 5%; animation-delay: 1.5s; }
.hex-7 { top: 115px; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }

@keyframes hexPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============================================================
   COMMUNITY / TESTIMONIALS
   ============================================================ */

.community-section {
    padding: var(--section-pad) 0;
    position: relative;
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-med);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-bright);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.3),
        2px 0 8px var(--chroma-purple),
        -2px 0 8px var(--chroma-blue);
}

.testimonial-featured {
    border-color: rgba(125,211,252,0.3);
    background: linear-gradient(135deg, var(--glass-bg), rgba(125,211,252,0.05));
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(125,211,252,0.2), rgba(180,100,255,0.15));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-role {
    display: block;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Live Counters */
.live-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.counter-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
}

.counter-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-bright);
}

.counter-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.counter-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.counter-label {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.counter-pulse {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 10px;
    height: 10px;
    background: #44ff88;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(68,255,136,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(68,255,136,0); }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.faq-item.active {
    border-color: rgba(125,211,252,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    color: var(--secondary);
    transition: all var(--transition-fast);
}

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

.faq-icon {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* ============================================================
   REGISTER SECTION
   ============================================================ */

.register-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.register-info {
    padding-top: 1rem;
}

.register-desc {
    font-size: 1.05rem;
    opacity: 0.7;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.register-urgency {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
}

.urgency-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.urgency-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #b464ff, #ff64aa);
    border-radius: 4px;
    width: 83%;
    transition: width 1s var(--ease-out);
}

.urgency-text {
    font-size: 0.85rem;
    opacity: 0.7;
}

.urgency-text span {
    font-weight: 700;
    color: var(--accent);
}

/* Form */
.register-form-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06),
        3px 0 12px var(--chroma-red),
        -3px 0 12px var(--chroma-blue);
}

.register-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #b464ff, #ff64aa, var(--accent));
    background-size: 200% auto;
    animation: shimmerText 3s linear infinite;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.8);
}

.optional {
    opacity: 0.4;
    font-weight: 400;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(125,211,252,0.5);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--secondary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.25);
}

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

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

.input-wrap:has(.form-input:focus) .input-icon {
    color: var(--accent);
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #ff6b8a;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.form-input.error {
    border-color: #ff6b8a;
    box-shadow: 0 0 0 3px rgba(255,107,138,0.1);
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.8;
}

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

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

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

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

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

.form-note {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 2rem 0;
    animation: fadeSlideUp 0.6s var(--ease-spring);
}

.success-icon {
    font-size: 4rem;
    color: #44ff88;
    margin-bottom: 1rem;
    animation: successBounce 0.6s var(--ease-spring) 0.2s both;
}

@keyframes successBounce {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-success p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.success-sub {
    font-size: 0.8rem !important;
    opacity: 0.4 !important;
    margin-top: 0.5rem;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */

.trust-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.trust-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.trust-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.6;
}

.responsible-gaming-notice {
    background: rgba(255, 180, 0, 0.08);
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-gaming-notice i {
    color: #ffb400;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.responsible-gaming-notice p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.main-footer {
    background: rgba(6, 10, 46, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 0;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand-desc {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-top: 1rem;
    line-height: 1.6;
}


.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-group a,
.footer-support-hours {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer-address {
    margin-top: 0.2rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.age-badge,
.responsible-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    opacity: 0.6;
}

.age-badge {
    background: rgba(255,60,60,0.1);
    border: 1px solid rgba(255,60,60,0.2);
    color: #ff6b8a;
}

.responsible-badge {
    background: rgba(125,211,252,0.08);
    border: 1px solid rgba(125,211,252,0.15);
    color: var(--accent);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
    padding-top: 80px;
}

.legal-hero {
    padding: 4rem var(--container-pad) 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.legal-hero p {
    opacity: 0.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.legal-content-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad) 4rem;
}

.legal-content {
    background: rgba(255,255,255,0.97);
    color: #1a1a2e;
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.5);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(12,20,69,0.1);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-mid);
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    font-size: 0.92rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

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

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

.legal-content li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.3rem;
    line-height: 1.7;
}

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

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

.legal-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

.legal-footer-info {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(12,20,69,0.1);
}

.legal-footer-info p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

/* GDPR Rights */
.gdpr-rights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.gdpr-right {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(12,20,69,0.03);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-dim);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(12,20,69,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-mid);
}

.gdpr-right-content h3 {
    margin-top: 0 !important;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

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

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

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

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

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

    .hero-visual {
        margin-left: 0;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

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

    .about-card-large {
        grid-column: span 2;
    }

    .feature-row-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-hero {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-card-reverse {
        flex-direction: column;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--glass-bg-strong);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        transition: right var(--transition-med);
        border-left: 1px solid var(--glass-border);
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    }

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

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

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
    }

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

    .about-card-large {
        grid-column: span 1;
        flex-direction: column;
    }

    .about-card-decoration {
        display: none;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .scroll-indicator {
        display: none;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 32px;
    }

    .phone-notch {
        width: 80px;
        height: 22px;
    }

    .character-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    }

    .age-gate-card {
        padding: 2rem 1.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .register-form-wrap {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .legal-content {
        background: #fff;
        color: #000;
    }

    .legal-content p,
    .legal-content li {
        color: #000;
    }
}
