/*
 * CSS STYLES - Casina Casino
 * Cinematic Spanish-corrida maximalism: dark oxblood charcoal with red/gold neon accents.
 * Fonts: Cinzel (display) + Outfit (body). Mobile-first. Single fixed dark theme.
 */

/* ============================================
   DESIGN TOKENS
   Single fixed dark theme - no switcher per brief
   ============================================ */
:root {
    --background: #160a0b;
    --foreground: #f5ead9;
    --card: #241013;
    --card-foreground: #f5ead9;
    --popover: #1d0c0e;
    --popover-foreground: #f5ead9;
    --primary: #ef3553;
    --primary-foreground: #fff6e8;
    --secondary: #34141a;
    --secondary-foreground: #f5ead9;
    --muted: #2a1114;
    --muted-foreground: #c8a49b;
    --accent: #a84312;
    --accent-foreground: #fff1e6;
    --destructive: #d72323;
    --destructive-foreground: #fff1f2;
    --border: #4a211f;
    --input: #200d0f;
    --ring: #d4af37;

    /* Gold palette */
    --gold: #d4af37;
    --gold-bright: #e8c84e;
    --gold-dim: #9a7d28;

    /* Ember accent */
    --ember: #a84312;
    --ember-bright: #c85a1e;

    /* Typography */
    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Container */
    --container-max: 1200px;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 250ms ease-out;
    --transition-slow: 400ms ease-out;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 32px rgba(168, 67, 18, 0.3);
    --shadow-gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

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

pre, code, .code-block {
    max-width: 100%;
    overflow-x: auto;
}

input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for display, Outfit for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 var(--space-md) 0;
    color: var(--foreground);
}

h1 {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 var(--space-sm) 0;
    max-width: 72ch;
}

strong { color: var(--gold-bright); }

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

.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ============================================
   BUTTONS
   Primary: corrida crimson, gold shine on hover
   Ghost: transparent with gold border
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(200, 16, 46, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    color: var(--primary-foreground);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--gold-dim);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   Sticky dark header with brand, nav, actions
   Mobile drawer slides in from right below 1024px
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.03em;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--gold-bright);
}

.site-brand__icon {
    display: flex;
    color: var(--gold);
    line-height: 0;
}

.site-brand__text {
    line-height: 1;
}

/* Desktop navigation */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        display: none;
        flex-direction: column;
        padding: var(--space-lg) var(--space-sm);
        overflow-y: auto;
        gap: var(--space-sm);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }

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

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: var(--space-sm);
        font-family: var(--font-display);
        font-size: 18px;
        color: var(--foreground);
        text-decoration: none;
    }

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

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }

    .nav-actions .btn {
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .header-inner {
        padding: 0 var(--space-lg);
    }

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

    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--space-lg);
    }

    .nav-link {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 500;
        color: var(--foreground);
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: color var(--transition-fast);
    }

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

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

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

    .nav-actions {
        display: flex;
        gap: var(--space-sm);
    }

    .menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE MENU TOGGLE (Hamburger)
   3 spans → X animation on aria-expanded=true
   ============================================ */
.menu-toggle {
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

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

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

/* ============================================
   ARENA ARC - Signature double gold curve
   Used behind heroes, CTAs, section dividers
   ============================================ */
.arena-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    max-width: 90vw;
    border: 2px solid var(--gold);
    border-bottom: none;
    border-radius: 600px 600px 0 0;
    opacity: 0.15;
    pointer-events: none;
}

.arena-arc::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 0;
    border: 1px solid var(--gold-dim);
    border-bottom: none;
    border-radius: inherit;
    opacity: 0.5;
}

.bull-ornament {
    color: var(--gold);
    display: inline-block;
}

.bull-ornament-wrap {
    display: inline-flex;
    margin-bottom: var(--space-sm);
}

/* ============================================
   HERO SECTIONS
   Full-bleed, asymmetric 55/45 split on desktop
   Model image overlaps text block by 24px
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: var(--space-2xl) 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 10, 11, 0.85) 0%, rgba(22, 10, 11, 0.5) 50%, rgba(22, 10, 11, 0.85) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    width: 100%;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 600px;
        padding: var(--space-3xl) 0;
    }
    .hero__content {
        padding: 0 var(--space-lg);
    }
    .hero__text {
        max-width: 55%;
    }
}

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

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

.hero__subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 60ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ============================================
   CTA BANNER COMPONENT
   Full-width conversion band with arena arc
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-sm);
    text-align: center;
    overflow: clip;
    background: linear-gradient(180deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%);
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-banner__headline {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin: 0;
    max-width: 800px;
}

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

.cta-banner__subtext {
    color: var(--muted-foreground);
    font-size: 17px;
    margin: 0;
    max-width: 60ch;
}

.cta-banner__microcopy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: var(--space-xs) 0 0 0;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-3xl) var(--space-lg);
    }
}

/* ============================================
   STAT BLOCK COMPONENT
   Row of key figures in burnished gold
   ============================================ */
.stat-block-section {
    padding: var(--space-lg) 0;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 0;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
}

.stat-caption {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        left: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
    }
    .stat-item:not(:last-child)::after {
        bottom: auto;
        left: auto;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
    }
}

@media (min-width: 1024px) {
    .stat-row {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Gold left accent border, plus icon, smooth expand
   ============================================ */
.faq-section {
    padding: var(--space-2xl) 0;
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform var(--transition-base);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer__inner {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer__inner p {
    margin: 0 0 var(--space-sm) 0;
    color: var(--foreground);
}

/* ============================================
   INFO CARD COMPONENT
   Grid of equal cards, gold top border, lift on hover
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

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

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

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--gold-bright);
}

.info-card__image {
    width: 100%;
    aspect-ratio: 400 / 260;
    overflow: hidden;
    flex-shrink: 0;
}

.info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (max-width: 767px) {
    .info-card__body {
        padding: var(--space-md);
    }
}

.info-card__icon {
    color: var(--gold);
    display: inline-flex;
    margin-bottom: var(--space-xs);
    line-height: 0;
}

.info-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.info-card__description {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.info-card__link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition-fast);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.info-card__link:hover {
    color: var(--gold-bright);
}

/* ============================================
   SECTION HEADINGS
   With arena arc ornament and eyebrow labels
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-header__title {
    font-size: clamp(26px, 4vw, 34px);
    margin: 0 0 var(--space-sm) 0;
}

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

.section-header__subtitle {
    color: var(--muted-foreground);
    font-size: 17px;
    max-width: 60ch;
    margin: 0 auto;
}

/* ============================================
   PAYMENT BADGES STRIP
   Muted grayscale provider logos
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    padding: var(--space-lg) 0;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    white-space: nowrap;
}

/* ============================================
   TRUST BADGES ROW
   Curacao seal, 18+ badge, Safety Index
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: stretch;
    padding: var(--space-lg) 0;
}

.trust-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    min-width: 140px;
    flex: 1;
    max-width: 240px;
}

.trust-badge__icon {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-xs);
}

.trust-badge__label {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   Attention-grabbing inline block with accent border
   ============================================ */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    position: relative;
}

.callout--warning {
    border-left-color: var(--primary);
}

.callout--info {
    border-left-color: var(--ember-bright);
}

.callout__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 var(--space-xs) 0;
}

.callout__body {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SUMMARY / TL;DR BOX
   Bordered container for key takeaways
   ============================================ */
.summary-box {
    background: var(--secondary);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 var(--space-sm) 0;
}

.summary-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.summary-box__list li {
    color: var(--foreground);
    font-size: 16px;
    padding-left: var(--space-md);
    position: relative;
}

.summary-box__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    top: 4px;
}

/* ============================================
   PULL QUOTE
   Oversized quote with gold left border
   ============================================ */
.pull-quote {
    border-left: 3px solid var(--gold);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    margin: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    font-style: italic;
    max-width: 72ch;
}

.pull-quote__attribution {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* ============================================
   TABLE STYLES
   Styled comparison table with highlighted columns
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

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

.table-wrapper th {
    background: var(--secondary);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: var(--space-md);
    border-bottom: 2px solid var(--gold-dim);
}

.table-wrapper td {
    padding: var(--space-md);
    color: var(--foreground);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

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

.table-wrapper tr:hover td {
    background: var(--muted);
}

.table-wrapper .col-highlight {
    background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   FOOTER
   Four columns collapsing to single stack on mobile
   ============================================ */
.site-footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
}

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

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 var(--space-sm) 0;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.footer-payments .payment-badge {
    font-size: 13px;
    padding: 6px 12px;
}

.footer-license,
.footer-age,
.footer-responsible {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.5;
}

.footer-age {
    color: var(--primary);
    font-weight: 600;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 var(--space-xs) 0;
    max-width: none;
}

.footer-disclaimer {
    font-size: 13px;
}

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 var(--space-lg);
    }
    .footer-bottom {
        padding: var(--space-md) var(--space-lg);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in and slide-up on .is-visible
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

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

/* Stagger children inside grids */
.info-card-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.info-card-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.info-card-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.info-card-grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.info-card-grid .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.info-card-grid .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   PULSING NEON DIVIDER
   Muleta-red neon lines that pulse gently
   ============================================ */
.neon-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: var(--space-lg) 0;
    animation: pulse-neon 3s ease-in-out infinite;
    border: none;
}

@keyframes pulse-neon {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============================================
   EMBER ORANGE UNDERLINE
   Pulsing accent under stat items
   ============================================ */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    right: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ember-bright), transparent);
    animation: pulse-ember 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes pulse-ember {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ============================================
   HERO CINEMATIC ZOOM
   Slow zoom on hero background images
   ============================================ */
.hero__bg img {
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* ============================================
   GOLD TEXT ACCENT UTILITY
   ============================================ */
.gold-accent {
    color: var(--gold);
}

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

/* ============================================
   TEXT WIDTH LIMIT
   ============================================ */
.text-limit {
    max-width: 72ch;
}

/* ============================================
   RESPONSIVE: 1280px MAX CONTENT
   ============================================ */
@media (min-width: 1280px) {
    .container,
    .header-inner,
    .footer-inner {
        max-width: 1280px;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   SR-ONLY - Screen reader only
   ============================================ */
.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;
}

/* ============================================
   HOMEPAGE - Hero microcopy
   ============================================ */
.hero__microcopy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: var(--space-sm) 0 0 0;
}

/* ============================================
   HOMEPAGE - Split feature (image + text)
   Live casino teaser, 50/50 on desktop
   ============================================ */
.split-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 1024px) {
    .split-feature {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.split-feature__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.split-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-feature__body h2 {
    margin-bottom: var(--space-sm);
}

.split-feature__body p {
    color: var(--muted-foreground);
}

.split-feature__body .btn {
    margin-top: var(--space-xs);
}

.split-feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.split-feature__list li {
    padding-left: var(--space-md);
    position: relative;
    color: var(--muted-foreground);
    font-size: 16px;
}

.split-feature__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gold);
    font-size: 12px;
}

/* ============================================
   HOMEPAGE - VIP tier visualization
   Five-tier progression row
   ============================================ */
.vip-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

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

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold-dim);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.vip-tier:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--gold-bright);
}

.vip-tier__level {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.vip-tier__name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
}

.vip-tier__rate {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.vip-tier__caption {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   HOMEPAGE - Payment logo badges
   Muted grayscale, full color on hover
   ============================================ */
.payment-badge img {
    display: block;
    height: 26px;
    width: auto;
    filter: grayscale(70%);
    opacity: 0.85;
    transition: filter var(--transition-base), opacity var(--transition-base);
}

.payment-badge:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   SITEMAP PAGE - Ordered page list
   ============================================ */
.sitemap-list {
    list-style: none;
    counter-reset: sitemap;
    padding: 0;
    margin: var(--space-lg) auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sitemap-list__item {
    counter-increment: sitemap;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sitemap-list__item::before {
    content: counter(sitemap, decimal-leading-zero);
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-dim);
    line-height: 1;
}

.sitemap-list__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sitemap-list__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 var(--space-xs) 0;
}

.sitemap-list__title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-list__title a:hover {
    color: var(--gold);
}

.sitemap-list__description {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 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;
}
