/* ============================================
   SERPAVA - Gradient Mesh Design System
   Mobile Game Website
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #667eea;
    --primary-dark: #5468d4;
    --primary-light: #8b9df0;
    --secondary: #764ba2;
    --secondary-dark: #5f3a85;
    --secondary-light: #9b6fc4;
    --accent: #f093fb;
    --accent-dark: #d86de8;
    --accent-light: #f5b8fd;

    --bg-deep: #0a0a1a;
    --bg-dark: #0f0f2e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-solid: #1a1a3e;
    --bg-white: #ffffff;
    --bg-light: #f8f7ff;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.48);
    --text-dark: #1a1a2e;
    --text-dark-secondary: #4a4a6a;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(240, 147, 251, 0.3);

    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.12);

    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-text: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #667eea 100%);
    --gradient-card: linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.08) 100%);
    --gradient-btn: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #f093fb 100%);
    --gradient-glow: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(240, 147, 251, 0.6) 100%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3), 0 0 80px rgba(240, 147, 251, 0.15);
    --shadow-glow-sm: 0 0 20px rgba(102, 126, 234, 0.2);

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-alt: 'DM Sans', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --header-height: 80px;
    --container-max: 1240px;
    --container-padding: 24px;
}

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

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

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

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

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

ul, ol {
    list-style: none;
}

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

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

/* --- Utility Classes --- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* --- Mesh Orbs (Gradient Mesh Background Elements) --- */
.mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 22s;
}

.mesh-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 26s;
}

.mesh-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 18s;
    opacity: 0.35;
}

.mesh-orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #4facfe 0%, transparent 70%);
    top: 50%;
    left: 60%;
    animation-delay: -7s;
    animation-duration: 24s;
    opacity: 0.3;
}

.mesh-orb-5 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
    animation-duration: 20s;
    opacity: 0.25;
}

.mesh-orb-6 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -20%;
    right: -15%;
    animation-delay: -2s;
    opacity: 0.4;
}

.mesh-orb-7 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -8s;
    opacity: 0.3;
}

.mesh-orb-8 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation-delay: -4s;
    opacity: 0.35;
}

.mesh-orb-9 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    bottom: 5%;
    right: -5%;
    animation-delay: -11s;
    opacity: 0.3;
}

.mesh-orb-10 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: -15%;
    animation-delay: 0s;
    opacity: 0.45;
}

.mesh-orb-11 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 40%;
    right: -10%;
    animation-delay: -6s;
    opacity: 0.35;
}

.mesh-orb-12 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -5%;
    left: 40%;
    animation-delay: -9s;
    opacity: 0.3;
}

.mesh-orb-13 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -30%;
    left: -10%;
    opacity: 0.3;
}

.mesh-orb-14 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    opacity: 0.2;
    animation-delay: -5s;
}

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

/* --- Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--gradient-btn);
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow-sm);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--glass);
}

.nav-link.nav-cta {
    background: var(--gradient-btn);
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    box-shadow: var(--shadow-glow-sm);
}

.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

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

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 60px;
    overflow: hidden;
}

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

.hero-badge {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--glass-strong);
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-badge i {
    font-size: 0.8rem;
    animation: boltPulse 2s ease infinite;
}

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

.hero-title {
    grid-column: 1;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

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

.hero-subtitle {
    grid-column: 1;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
    grid-column: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-stats {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

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

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

.hero-visual {
    position: absolute;
    right: calc((100vw - var(--container-max)) / 2 + var(--container-padding));
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    animation: fadeInRight 1s var(--ease-out) 0.5s both;
}

/* --- Phone Mockup --- */
.phone-mockup {
    position: relative;
    width: 300px;
}

.phone-frame {
    position: relative;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #0a0a1a;
    border-radius: 0 0 18px 18px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: linear-gradient(180deg, #0f0f2e 0%, #1a1a3e 100%);
    border-radius: 28px;
    padding: 20px 16px;
    min-height: 440px;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: var(--gradient-glow);
    border-radius: 60px;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* Game Preview inside phone */
.game-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-btn);
}

.gp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gp-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.gp-level {
    font-size: 0.65rem;
    color: var(--accent-light);
    font-weight: 500;
}

.gp-score {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.game-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gp-cell {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    animation: cellPulse 3s ease-in-out infinite;
}

.gp-cell-1 { background: linear-gradient(135deg, #667eea, #764ba2); animation-delay: 0s; }
.gp-cell-2 { background: linear-gradient(135deg, #f093fb, #667eea); animation-delay: 0.3s; }
.gp-cell-3 { background: linear-gradient(135deg, #764ba2, #f093fb); animation-delay: 0.6s; }
.gp-cell-4 { background: linear-gradient(135deg, #4facfe, #667eea); animation-delay: 0.9s; }
.gp-cell-5 { background: linear-gradient(135deg, #f093fb, #764ba2); animation-delay: 1.2s; }
.gp-cell-6 { background: linear-gradient(135deg, #667eea, #4facfe); animation-delay: 1.5s; }
.gp-cell-7 { background: linear-gradient(135deg, #764ba2, #667eea); animation-delay: 1.8s; }
.gp-cell-8 { background: linear-gradient(135deg, #f093fb, #4facfe); animation-delay: 2.1s; }
.gp-cell-9 { background: linear-gradient(135deg, #667eea, #f093fb); animation-delay: 2.4s; }

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

.game-preview-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.gp-bar-fill {
    height: 100%;
    width: 72%;
    background: var(--gradient-btn);
    border-radius: var(--radius-full);
    animation: barFill 3s ease-in-out infinite alternate;
}

@keyframes barFill {
    0% { width: 60%; }
    100% { width: 85%; }
}

.game-preview-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.gp-action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
}

.gp-action-main {
    width: 56px;
    height: 56px;
    background: var(--gradient-btn);
    border: none;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow-sm);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 2px;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

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

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-glow-sm);
}

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

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-glow);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s;
}

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

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

.btn-secondary:hover {
    background: var(--glass);
    border-color: var(--border-accent);
    transform: translateY(-2px);
    color: white;
}

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

/* --- Section Headers --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--glass-strong);
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-tag-light {
    background: rgba(240, 147, 251, 0.15);
    border-color: rgba(240, 147, 251, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

/* --- Social Proof Ticker --- */
.social-proof-section {
    position: relative;
    z-index: 5;
    padding: 16px 0;
    background: rgba(10, 10, 26, 0.6);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.ticker {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

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

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

/* --- About Section --- */
.about-section {
    padding: 120px 0;
    position: relative;
}

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

.about-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-sm);
}

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

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-large .about-card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
}

.about-card-icon {
    margin-bottom: 20px;
}

.icon-orb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.icon-orb-1 { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.icon-orb-2 { background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.icon-orb-3 { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.icon-orb-4 { background: linear-gradient(135deg, #4facfe, var(--primary)); }
.icon-orb-5 { background: linear-gradient(135deg, var(--primary), var(--accent-light)); }

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* --- Features Section --- */
.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.features-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), var(--accent), var(--secondary), transparent);
    transform: translateX(-50%);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.feature-item-left {
    flex-direction: row;
}

.feature-item-right {
    flex-direction: row;
}

.feature-item-left .feature-card {
    flex: 1;
    margin-right: 0;
}

.feature-item-left .feature-connector {
    flex: 1;
}

.feature-item-right .feature-connector {
    flex: 1;
}

.feature-item-right .feature-card {
    flex: 1;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.feature-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 60px;
}

.connector-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-btn);
    border: 3px solid var(--bg-deep);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-glow-sm);
}

.connector-line {
    display: none;
}

/* --- Community / Testimonials Section --- */
.community-section {
    padding: 120px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.testimonial-featured {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-card);
    border-color: var(--border-accent);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-featured .testimonial-text {
    font-size: 1.15rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.author-avatar-1 { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.author-avatar-2 { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.author-avatar-3 { background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.author-avatar-4 { background: linear-gradient(135deg, #4facfe, var(--primary)); }

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Live Feed --- */
.live-feed {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.live-feed-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow: hidden;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.88rem;
    animation: feedSlideIn 0.5s var(--ease-out) both;
}

.live-feed-item i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.live-feed-item .feed-time {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
}

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

/* --- Responsible Gaming Section --- */
.responsible-section {
    padding: 80px 0;
}

.responsible-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 50%, rgba(240, 147, 251, 0.04) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.responsible-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.responsible-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.responsible-card > p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.responsible-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.resp-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    font-size: 0.88rem;
    font-weight: 500;
}

.resp-feat i {
    color: var(--accent);
}

.responsible-small {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    background: var(--glass);
}

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

.faq-item.active {
    border-color: var(--border-accent);
    background: var(--gradient-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.4s var(--ease-out), color 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

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

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

/* --- Registration Section --- */
.register-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.register-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.register-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.register-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 500;
}

.register-benefit i {
    color: #22c55e;
    font-size: 1rem;
}

.register-counter {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.counter-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.counter-fill {
    height: 100%;
    background: var(--gradient-btn);
    border-radius: var(--radius-full);
    transition: width 1.5s var(--ease-out);
    width: 0%;
}

.counter-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

/* --- Form Styles --- */
.register-form-wrap {
    position: relative;
}

.register-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.register-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-btn);
}

.register-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.optional {
    font-weight: 400;
    color: var(--text-dark-secondary);
    font-size: 0.8rem;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 2px solid #e2e2f0;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
    background: white;
}

.input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.input-wrap i {
    color: #9ca3af;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.input-wrap:focus-within i {
    color: var(--primary);
}

.input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

.input-wrap input::placeholder {
    color: #b0b0c8;
}

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

.form-checkbox {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0e0;
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

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

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    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;
}

.form-success {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-dark-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 16px;
}

.form-error-message a {
    color: #ef4444;
    text-decoration: underline;
}

/* --- Trust Section --- */
.trust-section {
    padding: 80px 0 120px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.trust-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: var(--accent-light);
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.trust-card p a {
    color: var(--accent-light);
}

/* --- Footer --- */
.main-footer {
    position: relative;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

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

.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-top: 14px;
    line-height: 1.65;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

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

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-links-group a i {
    font-size: 0.75rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom-right {
    display: flex;
    gap: 12px;
}

.age-badge,
.resp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.age-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.resp-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* --- Legal Pages --- */
.legal-hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 60px;
    text-align: center;
    overflow: hidden;
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

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

.legal-section {
    padding: 60px 0 120px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-dark-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 10px 0 16px 24px;
    list-style: disc;
}

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

.legal-content li {
    color: var(--text-dark-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

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

.legal-content strong {
    color: var(--text-dark);
}

.legal-footer-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #eee;
}

.legal-footer-info p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-bottom: 4px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 15, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-accent);
    padding: 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.cookie-btn-accept {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-glow-sm);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.cookie-btn-reject {
    background: var(--glass-strong);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.cookie-btn-reject:hover {
    border-color: var(--border-accent);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

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

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

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.cookie-setting-row:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.cookie-setting-row strong {
    font-size: 0.9rem;
}

.cookie-setting-row p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    transition: all 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- Age Verification Modal --- */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    background: rgba(15, 15, 46, 0.98);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 460px;
    width: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.age-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.age-modal-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.age-small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.age-modal-actions {
    display: flex;
    gap: 12px;
}

.age-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.age-btn-yes {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-glow-sm);
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.age-btn-no {
    background: var(--glass-strong);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.age-btn-no:hover {
    border-color: rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(40px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Reveal animation for scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-stats {
        grid-column: 1;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

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

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

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 48px;
        animation: fadeInUp 1s var(--ease-out) 0.5s both;
    }

    .phone-mockup {
        width: 260px;
    }

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

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

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

    .about-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

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

    .testimonial-featured {
        grid-row: auto;
    }

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

    .features-timeline::before {
        left: 24px;
    }

    .feature-item {
        flex-direction: column !important;
    }

    .feature-item-left .feature-connector,
    .feature-item-right .feature-connector {
        display: none;
    }

    .feature-item-left .feature-card,
    .feature-item-right .feature-card {
        margin: 0 0 24px 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
        --container-padding: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: calc(var(--header-height) + 24px) 32px 32px;
        gap: 4px;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--border-light);
        z-index: 5;
    }

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

    .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link.nav-cta {
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 32px) 0 48px;
    }

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

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

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

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

    .responsible-card {
        padding: 32px 20px;
    }

    .responsible-features {
        gap: 10px;
    }

    .resp-feat {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

    .legal-content {
        padding: 32px 24px;
    }

    .register-form {
        padding: 28px 20px;
    }

    .feature-item-left .feature-card,
    .feature-item-right .feature-card {
        margin-left: 0;
    }

    .features-timeline::before {
        display: none;
    }

    .age-modal-content {
        padding: 32px 24px;
    }

    .age-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .stat-number {
        font-size: 1.6rem;
    }

    .phone-mockup {
        width: 220px;
    }

    .phone-screen {
        min-height: 360px;
        padding: 16px 12px;
    }
}

/* --- Print Styles --- */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal,
    .mesh-bg,
    .mesh-orb,
    .scroll-indicator {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }
}
```

Now the JavaScript:

```js