:root {
    /* GLOBAL DESIGN SPEC COLORS - Dark Mode Casino Theme */
    --bg-page: #0f172a;
    /* Slate 900 */
    --bg-surface: #1e293b;
    /* Slate 800 */
    --bg-surface-glass: rgba(15, 23, 42, 0.85);
    --bg-overlay: rgba(0, 0, 0, 0.95);

    --text-main: #f8fafc;
    /* Slate 50 */
    --text-muted: #cbd5e1;
    /* Slate 300 */

    --accent-gold: #fbbf24;
    /* Amber 400 */
    --accent-purple: #8b5cf6;
    /* Violet 500 */
    --accent-red: #ef4444;
    /* Red 500 */

    --shadow-glow: 0 10px 25px -5px rgba(139, 92, 246, 0.25);
    --radius-card: 1rem;
    --radius-btn: 9999px;

    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-main);
    color: var(--accent-soft);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-py {
    padding: 5rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

.compliance-badge {

    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.age-limit {
    background: #FF6663;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.compliance-badge span:last-child {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-page);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-surface-glass);
    backdrop-filter: blur(10px);
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-desktop {
    display: none;
}

.nav-link {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.badge-21 {
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-left: 2rem;
}

.mobile-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--bg-page);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 85vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-glow);
    width: 100%;
}

/* DISCLAIMER SECTION */
.disclaimer-box {
    background-color: var(--bg-surface);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-icon {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* FEATURES */
.feature-card {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.feature-icon {
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

/* TEASERS */
.teaser-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.teaser-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-glow);
}

/* STATS */
.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 900;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonial-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-card);
    border-left: 4px solid var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    gap: 4px;
}

/* FAQ */
.faq-item {
    background: var(--bg-surface);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* CONTACT (No Form) */
.contact-box {
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 4rem 2rem;
    border-radius: var(--radius-card);
    text-align: center;
}

/* FOOTER */
.footer {
    background-color: #020617;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.age-warning-footer {
    color: var(--accent-red);
    font-weight: bold;
    margin-top: 0.5rem;
    display: block;
}

/* AGE GATE MODAL */
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--bg-overlay);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.age-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.age-modal {
    background-color: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .mobile-toggle {
        display: none;
    }

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

    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .teaser-row.reverse .teaser-content {
        order: 2;
    }

    .teaser-row.reverse .teaser-img-wrap {
        order: 1;
    }

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

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

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

:root {
    /* STRICT COLOR TOKENS */
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;

    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;
    --accent: #356849;
    --accent-soft: #d5e6dd;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
    --header-height: 80px;
    --radius-card: 16px;
    --radius-btn: 8px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* UTILITIES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent);
    color: var(--bg-surface);
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-surface);
}

/* HEADER */
header {
    height: var(--header-height);
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--spacing-md);
}

.nav-desktop a {
    font-weight: 500;
    color: var(--text-on-deep);
}

.nav-desktop a.is-active {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.age-badge {
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: var(--spacing-md);
}

.hamburger {
    background: none;
    border: none;
    color: var(--text-on-deep);
    cursor: pointer;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--bg-deep);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-on-deep);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
}

.mobile-nav-links a {
    color: var(--text-on-deep);
    font-size: 1.5rem;
    font-weight: 700;
}

/* HERO SECTION */
.hero {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.hero p {
    color: var(--accent-soft);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    font-size: 1.1rem;
}

/* CATEGORIES */
.categories {
    padding: var(--spacing-md) 0;
    background-color: var(--bg-surface-soft);
}

.cat-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.cat-item {
    padding: 8px 16px;
    background-color: var(--bg-surface);
    border-radius: 20px;
    cursor: default;
    font-weight: 600;
    color: var(--text-soft);
    border: 1px solid transparent;
}

.cat-item.active {
    background-color: var(--accent);
    color: var(--bg-surface);
}

/* FEATURED GAME */
.featured {
    padding: var(--spacing-lg) 0;
}

.featured-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: var(--spacing-md);
}

/* CATALOGUE GRID */
.catalogue {
    padding: 0 0 var(--spacing-lg);
}

.grid-games {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.game-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border: 1px solid var(--bg-surface-soft);
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
}

.game-info h4 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

/* HOW IT WORKS */
.how-it-works {
    background-color: var(--bg-surface);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
}

/* FORM SECTION */
.form-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-surface-soft);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-btn);
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

/* FOOTER */
footer {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.footer-col h4 {
    color: var(--accent-soft);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent-soft);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* AGE GATE */
#age-gate {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.age-modal {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: var(--spacing-lg);
    border-radius: var(--radius-card);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--accent);
}

.age-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: none;
    }

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

    .steps-grid {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .featured-card {
        flex-direction: row;
    }

    .featured-img {
        width: 50%;
        height: auto;
    }

    .featured-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

@media (min-width: 1024px) {
    .grid-games {
        grid-template-columns: repeat(3, 1fr);
    }
}

:root {
    /* Brand Colors based on Global Design Spec (Dark Mode/Neon/Gold) */
    --c-bg-page: #0f172a;
    /* Slate 900 */
    --c-bg-surface: #1e293b;
    /* Slate 800 */
    --c-text-head: #f8fafc;
    /* Slate 50 */
    --c-text-body: #cbd5e1;
    /* Slate 300 */
    --c-accent-gold: #fbbf24;
    /* Amber 400 */
    --c-accent-purple: #8b5cf6;
    /* Violet 500 */
    --c-danger: #ef4444;
    /* Red 500 */

    /* Spacing & Layout */
    --header-height: 80px;
    --container-width: 1200px;
    --gap-md: 2rem;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--c-bg-page);
    color: var(--c-text-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3 {
    color: var(--c-text-head);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--c-accent-gold);
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
}

.nav-link {
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-text-body);
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-accent-gold);
}

.age-badge {
    border: 2px solid var(--c-danger);
    color: var(--c-danger);
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 2rem;
}

.burger {
    display: block;
    color: var(--c-text-head);
    font-size: 1.5rem;
    cursor: pointer;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #020617;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
}

/* MAIN CONTENT - THANKS PAGE */
main {
    flex: 1;
    margin-top: var(--header-height);
    display: block;
    padding: 4rem 0;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--c-accent-gold);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--c-text-body);
}

/* FOOTER */
footer {
    background-color: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--c-text-head);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--c-accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* AGE GATE MODAL */
.age-gate {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate-content {
    background-color: var(--c-bg-surface);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

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

.hidden {
    display: none !important;
}

/* Media Queries */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .burger {
        display: none;
    }

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

:root {
    /* COLOR SYSTEM TOKENS */
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;

    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;
    --accent: #356849;
    --accent-soft: #d5e6dd;

    /* Spacing & Layout */
    --spacing-container: 1200px;
    --spacing-gutter: 20px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* UTILITIES */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 var(--spacing-gutter);
    width: 100%;
}

/* HEADER */
header {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-on-deep);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
}

.nav-desktop a {
    color: var(--text-on-deep);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
    color: var(--accent-soft);
}

.mobile-toggle {
    background: none;
    border: none;
    color: var(--text-on-deep);
    cursor: pointer;
    display: block;
}

/* MAIN CONTENT */
main {
    flex: 1;
    padding: 4rem 0;
}

.legal-content {
    background-color: var(--bg-surface);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--bg-surface-soft);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-soft);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-soft);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-meta {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-surface-soft);
    font-size: 0.875rem;
    color: var(--text-soft);
    text-align: center;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 1rem;
    }

    .legal-content h2 {
        font-size: 1rem;
    }

    .legal-content h3 {
        font-size: .9rem;
    }

    main {
        padding: 2rem 1rem;
    }
}

@media (max-width: 400px) {
    .legal-content h1 {
        font-size: .7rem;
    }
}


/* FOOTER */
footer {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent-soft);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--bg-surface);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.age-warning {
    display: inline-block;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: bold;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--bg-deep);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: var(--text-on-deep);
    font-size: 1.5rem;
    text-decoration: none;
    margin: 1rem 0;
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-on-deep);
    font-size: 2rem;
    cursor: pointer;
}

/* AGE GATE MODAL */
.age-gate {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.age-box {
    background-color: var(--bg-deep);
    border: 2px solid var(--accent);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 450px;
    width: 100%;
    color: var(--text-on-deep);
}

.age-box h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.age-box p {
    margin-bottom: 2rem;
    color: #9ca3af;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s;
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    font-size: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: #9ca3af;
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .mobile-toggle {
        display: none;
    }

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

:root {
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;

    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;
    --accent: #356849;
    --accent-soft: #d5e6dd;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Global Layout */
header {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-soft);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
}

.nav-desktop a {
    color: var(--text-on-deep);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--accent-soft);
}

.nav-desktop a.is-active {
    color: var(--accent-soft);
    text-decoration: underline;
}

.burger-menu {
    background: none;
    border: none;
    color: var(--text-on-deep);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--bg-deep);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-overlay a {
    color: var(--text-on-deep);
    font-size: 1.5rem;
    text-decoration: none;
    margin: 1rem 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-on-deep);
    font-size: 2rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .burger-menu {
        display: none;
    }
}

/* Main Content */
main {
    flex: 1;
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

h1 {
    color: var(--text-main);
    color: var(--accent-soft);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--accent);
    padding-bottom: 1rem;
}

h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-soft);
}

ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--text-soft);
}

li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h3 {
    color: var(--accent-soft);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: var(--text-on-deep);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-on-deep);
    opacity: 0.7;
}

/* Age Gate Modal */
.age-gate {
    position: fixed;
    inset: 0;
    background-color: rgba(31, 41, 51, 0.98);
    z-index: 999;
    display: none;
    /* Logic controlled via JS */
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--accent);
}

.age-gate h2 {
    margin-top: 0;
    color: var(--text-main);
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.1s;
}

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

.btn-secondary {
    background-color: var(--bg-surface-soft);
    color: var(--text-main);
}

.btn:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    main {
        padding: 2rem 1rem;
    }

    .legal-content {
        padding: 1rem;
    }

    .legal-container h1 {
        font-size: 1rem;
    }

    .legal-container h2 {
        font-size: 1rem;
    }

    .legal-container h3 {
        font-size: .9rem;
    }
}

@media (max-width: 400px) {
    .legal-container h1 {
        font-size: .7rem;
    }
}

/* LEGAL SECTION (Pre-Footer) */
.legal-section {
    background-color: var(--bg-surface);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-status-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-item.warning {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.status-icon {
    font-weight: 900;
    background: var(--accent-red);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.status-item.info {
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.legal-content-wrapper {
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--accent-gold);
}

.legal-columns {
    column-count: 1;
    column-gap: 2rem;
}

.legal-columns p {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.legal-columns strong {
    color: var(--text-main);
}

.legal-footer-line {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-footer-line .separator {
    opacity: 0.6;
}

/* Responsive */
@media (min-width: 768px) {
    .legal-columns {
        column-count: 2;
    }
}

/* LEGAL HELP LINKS */
.legal-help-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-help-links a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.legal-help-links a:hover {
    color: #f59e0b;
}

.legal-help-links .separator {
    opacity: 0.5;
}

/* VISUAL TRUST CARD */
.visual-card {
    padding: 1rem;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--bg-surface);
    box-shadow: var(--shadow-glow);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-content {
    position: relative;
    z-index: 3;
}

.vc-content h3 {
    margin-bottom: 0.25rem;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.vc-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vc-icon {
    z-index: 4;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 191, 36, 0.35);
}