/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors */
    --color-primary: #d4af37;
    --color-primary-dark: #b8962e;
    --color-primary-light: #e8c84a;
    --color-accent: #c9a962;
    --color-accent-muted: rgba(201, 169, 98, 0.3);
    --color-gold-glow: rgba(212, 175, 55, 0.15);
    --color-gold-glow-strong: rgba(212, 175, 55, 0.35);

    --color-bg-deep: #0a0a0a;
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #111111;
    --color-bg-card: #141414;
    --color-bg-card-hover: #1c1c1c;
    --color-bg-elevated: #1e1e1e;

    --color-text-primary: #f0ece2;
    --color-text-secondary: #b0a890;
    --color-text-muted: #7a7060;
    --color-text-gold: #d4af37;

    --color-border: rgba(212, 175, 55, 0.15);
    --color-border-strong: rgba(212, 175, 55, 0.3);
    --color-border-subtle: rgba(255, 255, 255, 0.05);

    --color-success: #4ade80;
    --color-error: #f87171;
    --color-warning: #fbbf24;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    --font-accent: 'Libre Baskerville', 'Georgia', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-elegant: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    /* Shadows */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.1);
    --shadow-gold-strong: 0 0 60px rgba(212, 175, 55, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.6);

    /* Layout */
    --header-height: 80px;
    --container-max: 1240px;
    --container-narrow: 800px;
}

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

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

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

body.no-scroll {
    overflow: hidden;
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

::selection {
    background-color: rgba(212, 175, 55, 0.3);
    color: var(--color-text-primary);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gold-text {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.25); }
}

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

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

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}

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

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.5s ease;
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xl);
}

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

.cookie-text p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.cookie-link {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-separator {
    color: var(--color-text-muted);
    margin: 0 var(--space-sm);
    font-size: 0.8rem;
}

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

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    transition: all var(--transition-fast);
}

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

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

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

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

.btn-cookie-settings {
    background: transparent;
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.cookie-setting-row {
    margin-bottom: var(--space-md);
}

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

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

/* ============================================
   AGE GATE
   ============================================ */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

.age-gate-modal {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 90%;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), var(--shadow-gold-strong);
}

.age-gate-decoration-top {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.age-gate-decoration-bottom {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.age-gate-content {
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.age-gate-icon {
    margin-bottom: var(--space-xl);
}

.age-gate-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.age-gate-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.age-gate-sub {
    font-style: italic;
    font-family: var(--font-accent);
    color: var(--color-text-muted) !important;
    margin-bottom: var(--space-2xl) !important;
}

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

.btn-age {
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

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

.btn-age-yes:hover {
    background: var(--color-primary-light);
    box-shadow: var(--shadow-gold);
}

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

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

/* Age Denied */
.age-denied-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-denied-content {
    text-align: center;
    padding: var(--space-2xl);
}

.age-denied-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.age-denied-content p {
    color: var(--color-text-secondary);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-solid {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-bg-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.scrolled .header-bg-line,
.header-solid .header-bg-line {
    opacity: 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

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

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

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

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

.nav-link-cta {
    background: var(--color-primary);
    color: var(--color-bg-primary) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

.nav-link-cta:hover {
    background: var(--color-primary-light);
    color: var(--color-bg-primary) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.mobile-nav-cta {
    color: var(--color-primary) !important;
    font-weight: 700;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    overflow: hidden;
    background: var(--color-bg-deep);
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.06), transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-line {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
}

.hero-line:nth-child(1) { left: 10%; }
.hero-line:nth-child(2) { left: 25%; }
.hero-line:nth-child(3) { left: 50%; }
.hero-line:nth-child(4) { left: 75%; }
.hero-line:nth-child(5) { left: 90%; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-2xl);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: livePulse 2s ease infinite;
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-top: var(--space-sm);
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-light), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-gold);
    color: var(--color-bg-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-strong);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

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

/* Hero Image */
.hero-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-elevated), var(--shadow-gold);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: skewX(-15deg);
    animation: shimmer 6s ease infinite;
    pointer-events: none;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-primary);
    animation: scrollLine 2s ease infinite;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 0.3rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
    background: rgba(212, 175, 55, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--color-border-strong), transparent);
}

.section-divider-left {
    justify-content: flex-start;
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-accent);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

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

.feature-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-elegant);
    overflow: hidden;
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.feature-icon {
    margin-bottom: var(--space-lg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

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

.feature-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
}

.feature-card:hover .feature-number {
    color: rgba(212, 175, 55, 0.1);
}

/* ============================================
   GAME SHOWCASE
   ============================================ */
.game-showcase {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.showcase-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.showcase-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border-strong);
    box-shadow: var(--shadow-elevated);
}

.showcase-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
    animation: pulse-glow 3s ease infinite;
}

.showcase-text-side .section-title {
    text-align: left;
}

.showcase-description {
    font-family: var(--font-accent);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.showcase-list {
    margin-bottom: var(--space-2xl);
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.showcase-list li svg {
    flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto;
    gap: var(--space-lg);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-gold);
    transform: scale(1.02);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-zoom {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: var(--color-text-primary);
    z-index: 10;
    transition: color var(--transition-fast);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

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

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-gold);
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

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

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 100px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Live Feed */
.live-feed {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-4xl);
    max-height: 240px;
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    animation: livePulse 2s ease infinite;
}

.live-feed-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    animation: fadeInUp 0.5s ease;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.live-feed-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
}

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

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

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--color-border-strong);
}

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

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

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

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

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

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

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

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

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

.faq-answer p {
    padding-bottom: var(--space-xl);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

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

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

.signup-gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(80px);
    pointer-events: none;
}

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

.signup-info {
    position: relative;
    z-index: 1;
}

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

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

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

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

.signup-benefits li svg {
    flex-shrink: 0;
}

/* Form */
.signup-form-wrapper {
    position: relative;
    z-index: 1;
}

.signup-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

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

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

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

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input.error {
    border-color: var(--color-error);
}

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

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

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

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

.form-checkbox-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--color-border-strong);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all var(--transition-fast);
    background: var(--color-bg-primary);
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--color-bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.form-checkbox-label input[type="checkbox"]:focus-visible + .form-checkbox-custom {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    margin-top: var(--space-lg);
}

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

.spinner {
    animation: spin 1s linear infinite;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-lg);
    line-height: 1.6;
}

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

/* Success */
.signup-success {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    margin-bottom: var(--space-xl);
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
}

.trust-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.trust-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.trust-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-primary);
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.trust-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-deep);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.footer-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-age-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-error);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-error);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

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

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

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

.footer-contact-links li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer-contact-links li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    max-width: 700px;
    margin: 0 auto var(--space-sm) !important;
}

.footer-responsible {
    font-size: 0.75rem !important;
    color: var(--color-warning) !important;
    font-weight: 500;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background: var(--color-bg-deep);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

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

.legal-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-primary);
}

.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: #fafaf8;
    color: #1a1a1a;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

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

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

.legal-content li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: var(--space-xs);
}

.legal-content a {
    color: #8b6914;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: #a67c00;
}

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
}

.gdpr-rights-list {
    margin-top: var(--space-xl);
}

.gdpr-right {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
}

.gdpr-right h3 {
    color: #8b6914 !important;
    margin-top: 0 !important;
}

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

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .showcase-text-side .section-title {
        text-align: center;
    }

    .section-divider-left {
        justify-content: center;
    }

    .signup-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

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

    .signup-benefits {
        align-items: center;
    }

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

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

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

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

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
        min-height: auto;
    }

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

    .hero-stat-divider {
        height: 30px;
    }

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

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

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

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

    .gallery-item-large {
        grid-column: span 1;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
    }

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

    .stat-value {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 var(--space-lg);
    }

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

    .cookie-actions {
        flex-direction: column;
    }

    .age-gate-actions {
        gap: var(--space-sm);
    }
}

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

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

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

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

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .showcase-image-container {
        width: 160px;
        height: 160px;
    }

    .showcase-icon-glow {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .cookie-banner,
    .age-gate-overlay,
    .hero-noise,
    .hero-gradient-orb,
    .hero-lines,
    .section-noise,
    .hero-scroll-indicator,
    .hamburger,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
```

---

Now the JavaScript file:

```js