/* ============================================
   CLEOBETRA CASINO - DESIGN SYSTEM
   Dark luxury Egyptian theme: gold + turquoise accents
   Fonts: Cinzel (headlines), Marcellus (body)
   Mobile-first, dark-only (no theme switcher)
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Dark theme is the sole theme - no light mode.
   ============================================ */
:root {
    /* Backgrounds */
    --bg-base: #0a0e1a;
    --bg-elevated: #111827;
    --bg-card: #1a2336;
    --bg-deep: #060912;

    /* Foreground */
    --fg-primary: #f1f5f9;
    --fg-secondary: #cbd5e1;
    --fg-muted: #94a3b8;

    /* Brand colors */
    --gold: #d4af37;
    --gold-bright: #f0c75e;
    --gold-dim: #a8862a;
    --turquoise: #14b8a6;
    --turquoise-bright: #2dd4bf;
    --turquoise-dim: #0d9488;

    /* Borders */
    --border-color: #2a3a5c;
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-turquoise: rgba(20, 184, 166, 0.4);

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow-gold: 0 0 24px rgba(212, 175, 55, 0.3);
    --shadow-glow-turq: 0 0 24px rgba(20, 184, 166, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0c75e 50%, #d4af37 100%);
    --gradient-turq: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%);
    --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);

    /* Spacing scale (8px base unit) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 100px;

    /* Section spacing */
    --section-gap: 60px;
    --section-pad: 60px 20px;

    /* Typography */
    --font-head: "Cinzel", Georgia, serif;
    --font-body: "Marcellus", Georgia, serif;
    --fs-h1: 28px;
    --fs-h2: 24px;
    --fs-h3: 20px;
    --fs-body: 17px;
    --fs-small: 14px;
    --lh-body: 1.6;
    --lh-head: 1.2;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 300ms ease-out;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--fg-primary);
    background-color: var(--bg-base);
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--turquoise-bright);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

p, li, td, th {
    overflow-wrap: break-word;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for headings, Marcellus for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: var(--lh-head);
    color: var(--fg-primary);
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-md);
    color: var(--fg-secondary);
}

p:last-child {
    margin-bottom: 0;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.turq-text {
    color: var(--turquoise-bright);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-pad);
}

.section-dark {
    background-color: var(--bg-deep);
}

.section-elevated {
    background-color: var(--bg-elevated);
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with logo, nav, and CTA buttons
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-base);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-brand .logo {
    border-radius: 6px;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

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

.nav-link {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--fg-secondary);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

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

.nav-link:hover {
    color: var(--gold-bright);
}

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.burger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.mobile-nav-overlay.is-active {
    display: block;
}

/* ============================================
   MOBILE NAV DRAWER
   Slide-in drawer below header
   ============================================ */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background-color: var(--bg-base);
        border-top: 1px solid var(--border-color);
        padding: 24px 20px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition), visibility var(--transition);
        z-index: 999;
        display: flex;
        gap: 0;
        visibility: hidden;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: var(--space-xl);
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 18px;
        padding: 12px 0;
    }

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

    .nav-actions {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 44px;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0e1a;
    font-weight: 600;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-turq);
    color: #0a0e1a;
}

.btn-outline {
    background: transparent;
    color: var(--gold-bright);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
}

.btn-sm {
    font-size: 14px;
    padding: 8px 20px;
    min-height: 38px;
}

.btn-lg {
    font-size: 18px;
    padding: 16px 40px;
    min-height: 52px;
}

/* ============================================
   HERO SECTION
   Full-bleed dark hero with gold gradient text
   ============================================ */
.hero {
    position: relative;
    padding: 60px 20px;
    background: var(--gradient-hero);
    overflow: clip;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

.hero h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 1.25;
}

.hero h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--fg-secondary);
    max-width: 600px;
}

.hero-image {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

/* ============================================
   PHARAOH'S FRAME
   Golden gradient border with hieroglyphic corners
   ============================================ */
.pharaoh-frame {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 24px;
    border: 1px solid var(--border-gold);
    transition: border-color var(--transition);
}

.pharaoh-frame::before,
.pharaoh-frame::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold);
    pointer-events: none;
}

.pharaoh-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-lg) 0 0 0;
}

.pharaoh-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-lg) 0;
}

.pharaoh-frame:hover {
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-glow-gold);
}

/* ============================================
   CARD GRID
   Responsive grid for content cards
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-width: 0;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border-turquoise);
    box-shadow: var(--shadow-card);
}

.card-featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow-gold);
}

.card-image {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.card h3 {
    color: var(--gold-bright);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.two-col-text {
    min-width: 0;
}

.two-col-image {
    min-width: 0;
}

.two-col-image img {
    border-radius: var(--radius-lg);
}

/* ============================================
   STAT HIGHLIGHT
   Large number with label
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--fs-small);
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background-color: rgba(20, 184, 166, 0.08);
    border-left: 4px solid var(--turquoise);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: var(--space-lg) 0;
}

.callout-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--turquoise-bright);
    margin-bottom: var(--space-sm);
}

.callout p {
    color: var(--fg-secondary);
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--gold-bright);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    margin: var(--space-xl) 0;
    position: relative;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--fg-muted);
    font-style: normal;
    margin-top: var(--space-md);
    letter-spacing: 0.05em;
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.tldr-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: var(--space-xl) 0;
}

.tldr-box h2 {
    color: var(--gold-bright);
    font-size: 22px;
}

.tldr-box ul {
    list-style: none;
    padding: 0;
}

.tldr-box li {
    padding: var(--space-sm) 0;
    padding-left: 28px;
    position: relative;
    color: var(--fg-secondary);
}

.tldr-box li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: var(--turquoise-bright);
    font-weight: bold;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.comparison-table th {
    background-color: var(--bg-deep);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-bright);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border-gold);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--fg-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    transition: background-color var(--transition);
}

.comparison-table tbody tr:hover {
    background-color: rgba(20, 184, 166, 0.06);
}

.comparison-table .row-highlight {
    background-color: rgba(212, 175, 55, 0.08);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-card);
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--fg-secondary);
    min-height: 44px;
}

/* ============================================
   PAYMENT ICONS
   ============================================ */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-card);
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--fg-secondary);
    min-height: 36px;
}

/* ============================================
   VIP STEPPER
   Horizontal stepper for VIP levels
   ============================================ */
.vip-stepper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.vip-step {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.vip-step:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow-gold);
}

.vip-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: #0a0e1a;
}

.vip-step-content {
    min-width: 0;
}

.vip-step-content h3 {
    color: var(--gold-bright);
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.vip-step-content p {
    font-size: 15px;
    color: var(--fg-muted);
}

/* ============================================
   PROVIDER LOGO STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.provider-logo {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-card);
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--fg-secondary);
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

.provider-logo:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed golden frame section
   ============================================ */
.cta-banner-section {
    padding: 60px 20px;
    background-color: var(--bg-deep);
}

.cta-banner-frame {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-deep) 100%);
    border: 1px solid var(--border-gold);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: clip;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.cta-banner-frame:hover {
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-glow-gold);
}

.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.cta-banner-heading {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.cta-banner-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

.cta-banner-btn {
    background: var(--gradient-gold);
    color: #0a0e1a;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cta-banner-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-turq);
    color: #0a0e1a;
}

.cta-banner-micro {
    font-size: var(--fs-small);
    color: var(--fg-muted);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Expandable Q&A with scarab toggle
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-active {
    border-color: var(--turquoise);
    border-left: 4px solid var(--turquoise);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    min-height: 44px;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
    color: var(--fg-primary);
    transition: color var(--transition);
}

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

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-scarab-icon {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.is-active .faq-scarab-icon {
    transform: rotate(180deg);
    color: var(--turquoise-bright);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease-out;
}

.faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
}

/* ============================================
   DETAILS / SUMMARY (native)
   ============================================ */
details {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: var(--space-md);
}

summary {
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
    color: var(--fg-primary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    transition: transform var(--transition);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details[open] summary {
    color: var(--turquoise-bright);
}

details > *:not(summary) {
    padding: 0 24px 24px;
}

/* ============================================
   FOOTER
   Four-column grid collapsing to single column
   ============================================ */
.site-footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border-color);
    padding: 48px 20px 24px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 15px;
    color: var(--fg-muted);
    transition: color var(--transition);
}

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

.footer-license {
    font-size: 14px;
    color: var(--fg-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

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

.badge-18 {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.badge-text {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.4;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================ */

/* Split hero - two-column on desktop */
.hero--split .hero-inner {
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--gold-bright);
    letter-spacing: 0.04em;
}

.hero-badge-icon {
    font-size: 16px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--fg-secondary);
    max-width: 580px;
    line-height: 1.6;
}

.hero-micro {
    font-size: var(--fs-small);
    color: var(--fg-muted);
}

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

.hero-visual img {
    max-width: 280px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero--split .hero-inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--space-2xl);
    }

    .hero-content {
        flex: 1.2;
        align-items: flex-start;
    }

    .hero-visual {
        flex: 0.8;
    }

    .hero-visual img {
        max-width: 380px;
    }
}

@media (min-width: 1024px) {
    .hero-visual img {
        max-width: 460px;
    }
}

/* PAA Answer Box */
.paa-answer {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.paa-answer h2 {
    color: var(--gold-bright);
    font-size: 22px;
    margin-bottom: var(--space-md);
}

.paa-answer p {
    color: var(--fg-secondary);
}

@media (min-width: 768px) {
    .paa-answer h2 {
        font-size: 26px;
    }
}

/* Bonus Teaser - two-column */
.bonus-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-teaser {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-2xl);
    }
}

.bonus-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.bonus-tier {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.bonus-tier:hover {
    border-color: var(--gold);
}

.bonus-tier-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    color: #0a0e1a;
    font-size: 16px;
}

.bonus-tier-content h3 {
    font-size: 16px;
    color: var(--gold-bright);
    margin-bottom: 2px;
}

.bonus-tier-content p {
    font-size: 14px;
    color: var(--fg-muted);
    margin: 0;
}

/* Section heading with decorative center */
.section-heading {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-heading h2 {
    margin-bottom: var(--space-md);
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--fg-secondary);
}

/* VIP overview with emblem */
.vip-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.vip-emblem {
    display: flex;
    justify-content: center;
}

.vip-emblem img {
    max-width: 200px;
}

@media (min-width: 768px) {
    .vip-overview {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

/* Sportsbook teaser banner */
.sportsbook-teaser {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.sportsbook-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

.sportsbook-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .sportsbook-teaser {
        padding: 100px 32px;
    }
}

/* Trust & payment section */
.trust-section {
    text-align: center;
}

.trust-section .payment-icons {
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    margin: var(--space-lg) auto;
}

.license-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.disclaimer-text {
    font-size: 14px;
    color: var(--fg-muted);
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    line-height: 1.5;
}

/* ============================================
   ANIMATIONS
   Fade-in slide-up on viewport entry
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Stagger delay utility */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   Mobile-first: base = mobile, enhance upward
   ============================================ */

/* Tablet ≥ 768px */
@media (min-width: 768px) {
    :root {
        --fs-h1: 36px;
        --fs-h2: 28px;
        --fs-h3: 22px;
        --section-gap: 80px;
        --section-pad: 80px 32px;
    }

    .container {
        padding: 0 32px;
    }

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

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

    .two-col {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 80px 32px;
    }

    .hero-image {
        max-width: 400px;
    }

    .cta-banner-heading {
        font-size: 32px;
    }

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

    .vip-stepper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .vip-step {
        flex: 1 1 calc(50% - var(--space-md));
    }
}

/* Desktop ≥ 1024px */
@media (min-width: 1024px) {
    :root {
        --fs-h1: 48px;
        --fs-h2: 36px;
        --fs-h3: 26px;
        --section-gap: 100px;
        --section-pad: 100px 32px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
    }

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

    .hero {
        padding: 100px 32px;
    }

    .hero-image {
        max-width: 480px;
    }

    .hero-inner {
        gap: var(--space-2xl);
    }

    .cta-banner-section {
        padding: 100px 32px;
    }

    .cta-banner-frame {
        padding: 64px 48px;
    }

    .cta-banner-heading {
        font-size: 36px;
    }

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

    .vip-step {
        flex: 1 1 calc(20% - var(--space-md));
    }

    .section {
        padding: var(--section-pad);
    }
}

/* Max width ≥ 1280px */
@media (min-width: 1280px) {
    .container,
    .header-inner,
    .footer-inner,
    .hero-inner {
        max-width: var(--max-width);
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--gradient-hero);
}

.sitemap-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sitemap-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

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

.sitemap-hero-content h1 {
    margin-bottom: var(--space-md);
}

.sitemap-hero-content p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--fg-secondary);
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.sitemap-item h2 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.sitemap-item h2 a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: color var(--transition);
}

.sitemap-item h2 a:hover {
    color: var(--turquoise-bright);
}

.sitemap-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .sitemap-hero {
        padding: 80px 0;
    }

    .sitemap-hero-content h1 {
        font-size: 36px;
    }

    .sitemap-item h2 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .sitemap-hero {
        padding: 100px 0;
    }

    .sitemap-hero-content h1 {
        font-size: 48px;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
