/* ============================================
   GLOBAL RESET & VARIABLES
   ============================================ */

:root {
    --primary: #00ff88;
    --primary-dim: #00cc6a;
    --primary-dark: #00994f;
    --primary-rgb: 0, 255, 136;
    --secondary: #0a0a0a;
    --secondary-light: #111111;
    --secondary-lighter: #1a1a1a;
    --accent: #ff0080;
    --accent-dim: #cc0066;
    --accent-rgb: 255, 0, 128;
    --text-primary: #e8e8e8;
    --text-secondary: #999999;
    --text-muted: #666666;
    --text-white: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 255, 136, 0.3);
    --border-accent: rgba(255, 0, 128, 0.3);
    --glow-primary: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.15), 0 0 80px rgba(0, 255, 136, 0.05);
    --glow-accent: 0 0 20px rgba(255, 0, 128, 0.3), 0 0 40px rgba(255, 0, 128, 0.15), 0 0 80px rgba(255, 0, 128, 0.05);
    --glow-primary-sm: 0 0 10px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 255, 136, 0.2);
    --glow-accent-sm: 0 0 10px rgba(255, 0, 128, 0.4), 0 0 20px rgba(255, 0, 128, 0.2);
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--text-white);
}

ul {
    list-style: none;
}

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

input {
    font-family: inherit;
    color: inherit;
}

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

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

.text-glow-primary {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5), 0 0 40px rgba(var(--primary-rgb), 0.25);
}

.text-glow-accent {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5), 0 0 40px rgba(var(--accent-rgb), 0.25);
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes breathe {
    0%, 100% { box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3); }
    50% { box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.6), 0 0 50px rgba(var(--primary-rgb), 0.2); }
}

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

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes scan-line {
    0% { top: -5%; }
    100% { top: 105%; }
}

@keyframes slide-scroll {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes neon-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.6), 0 0 20px rgba(var(--primary-rgb), 0.4), 0 0 40px rgba(var(--primary-rgb), 0.2);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.85;
        text-shadow: none;
    }
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%)) scale(0);
        opacity: 0;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bar-fill {
    from { width: 0; }
    to { width: var(--fill); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes success-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes glow-orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(150px); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px); }
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98), rgba(15, 15, 15, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    padding: 20px 0;
    box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.5), 0 -2px 20px rgba(var(--primary-rgb), 0.1);
}

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

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
    box-shadow: var(--glow-primary-sm);
}

.cookie-btn-accept:hover {
    background: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

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

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

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

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

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    position: relative;
    background: linear-gradient(145deg, var(--secondary-lighter), var(--secondary));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--glow-primary), 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: success-bounce 0.5s ease-out;
}

.age-modal-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.age-icon-container {
    margin-bottom: 20px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.age-modal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.age-small-text {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    margin-bottom: 28px !important;
}

.age-modal-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.age-btn {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
}

.age-btn-yes {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
    box-shadow: var(--glow-primary-sm);
}

.age-btn-yes:hover {
    background: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.age-btn-no {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-subtle);
}

.age-btn-no:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(var(--primary-rgb), 0.1);
}

.header-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.4), rgba(var(--accent-rgb), 0.4), transparent);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow-primary-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--secondary) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--glow-primary-sm);
    padding: 8px 20px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--text-white) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

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

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

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

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

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

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.8), 0 0 12px rgba(var(--primary-rgb), 0.4);
    animation: pulse-glow var(--duration) var(--delay) ease-in-out infinite;
}

.hero-particle:nth-child(even) {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(var(--accent-rgb), 0.8), 0 0 12px rgba(var(--accent-rgb), 0.4);
}

.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.15), transparent);
    animation: scan-line 6s linear infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 20px;
    background: rgba(var(--primary-rgb), 0.05);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.8);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
}

.title-line-1 {
    font-size: clamp(48px, 8vw, 90px);
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.title-line-2 {
    font-size: clamp(48px, 8vw, 90px);
    color: var(--primary);
    text-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5), 0 0 60px rgba(var(--primary-rgb), 0.25), 0 0 100px rgba(var(--primary-rgb), 0.1);
    animation: neon-flicker 4s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 8px;
    text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

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

.btn-glow {
    box-shadow: var(--glow-primary-sm);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-subtle);
}

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

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

.spin-icon {
    animation: spin 1s linear infinite;
}

/* Social Proof in Hero */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsl(var(--hue), 80%, 30%);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: hsl(var(--hue), 80%, 70%);
    margin-left: -8px;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.proof-count {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-display);
}

/* Hero Visual */
.hero-visual-block {
    position: relative;
    animation: fade-in-up 0.8s 0.3s ease-out both;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: var(--glow-primary), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.image-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%, rgba(var(--accent-rgb), 0.1) 100%);
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.frame-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    box-shadow: -2px -2px 10px rgba(var(--primary-rgb), 0.5);
}

.frame-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    box-shadow: 2px -2px 10px rgba(var(--accent-rgb), 0.5);
}

.frame-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    box-shadow: -2px 2px 10px rgba(var(--accent-rgb), 0.5);
}

.frame-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    box-shadow: 2px 2px 10px rgba(var(--primary-rgb), 0.5);
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--glow-primary-sm);
    z-index: 3;
}

.card-weapon {
    top: 10%;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.card-mode {
    bottom: 15%;
    left: -20px;
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--glow-accent-sm);
    animation: float-delayed 5s ease-in-out infinite;
}

.fc-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.fc-value {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

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

.features-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--primary-rgb), 0.05);
}

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

.feature-card:nth-child(even):hover {
    border-color: rgba(var(--accent-rgb), 0.2);
}

.feature-card:nth-child(even)::before {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.feature-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.feature-icon-glow-pink {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.feature-card:nth-child(even) .feature-line {
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    opacity: 0;
    transform: translateY(40px);
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item-wide {
    grid-column: 1 / -1;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    height: 100%;
    transition: all var(--transition-base);
    cursor: pointer;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-frame:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow-primary), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.gallery-frame:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(40px);
}

.stat-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: breathe 3s ease-in-out infinite;
}

.stat-icon-pink {
    border-color: rgba(var(--accent-rgb), 0.3);
    animation-name: breathe;
    --primary-rgb: var(--accent-rgb);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
    letter-spacing: 1px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb), 0.5));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

.stat-bar-fill.animate {
    animation: bar-fill 1.5s ease-out forwards;
}

.stat-bar-pink {
    background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.5));
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.4);
}

/* Live Feed */
.live-feed {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    opacity: 0;
    transform: translateY(40px);
}

.live-feed.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff3333;
    border-radius: 50%;
    animation: pulse-glow 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 50, 50, 0.6);
}

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

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    animation: live-slide 0.4s ease-out;
}

.live-feed-item .feed-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
}

.feed-icon-green {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.feed-icon-pink {
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
}

.live-feed-item .feed-name {
    color: var(--text-white);
    font-weight: 600;
}

.live-feed-item .feed-time {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */

.signup-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.signup-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.signup-glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.signup-orb-1 {
    top: 20%;
    left: 10%;
    background: var(--primary);
}

.signup-orb-2 {
    bottom: 10%;
    right: 10%;
    background: var(--accent);
}

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

.signup-info {
    padding-top: 20px;
}

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

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 16px;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-md);
}

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

/* Form */
.signup-form-container {
    position: relative;
}

.signup-form {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), transparent, rgba(var(--accent-rgb), 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.signup-form:focus-within .form-glow-border {
    opacity: 1;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.required-mark {
    color: var(--accent);
}

.optional-mark {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 15px;
    transition: all var(--transition-base);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.03);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1), 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.form-input:focus + svg,
.form-input:focus ~ svg {
    stroke: var(--primary);
}

.form-input.error {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-error {
    display: none;
    font-size: 12px;
    color: var(--accent);
    margin-top: 6px;
    font-weight: 500;
}

.form-error.visible {
    display: block;
}

/* Custom Checkbox */
.form-consent {
    margin-bottom: 28px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.custom-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
}

.custom-checkbox svg {
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.checkbox-wrapper input:checked + .custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

.checkbox-wrapper input:checked + .custom-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

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

/* Success Message */
.signup-success {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-xl);
    padding: 60px 32px;
    text-align: center;
    animation: success-bounce 0.5s ease-out;
    box-shadow: var(--glow-primary);
}

.success-icon-wrap {
    margin-bottom: 24px;
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.signup-success p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.15);
}

.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-base);
    gap: 16px;
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.trust-section {
    padding: 60px 0 100px;
}

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.trust-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-card:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-4px) !important;
}

.trust-card svg {
    margin-bottom: 16px;
}

.trust-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

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

.main-footer {
    position: relative;
    background: var(--secondary-light);
    padding: 60px 0 0;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.3), rgba(var(--accent-rgb), 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: var(--radius-md);
    background: rgba(var(--accent-rgb), 0.05);
}

.age-number {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.4);
}

.age-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-links a, .footer-links span {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contacts svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-responsible {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    opacity: 0.6;
}

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

.legal-page-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

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

.legal-content {
    padding: 60px 0 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
}

.legal-container h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul, .legal-container ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-container ol li {
    list-style: decimal;
}

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

.legal-container strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-container .legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 20px 0;
}

.legal-update-date {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-block {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-subtle);
    }

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

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

    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .title-line-1, .title-line-2 {
        font-size: clamp(38px, 10vw, 60px);
    }

    .hero-floating-card {
        display: none;
    }

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

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

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

    .gallery-item-large {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

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

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

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

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

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

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

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@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;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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