/*
 * 1Go Casino Design System
 * Retro Grand Prix 60s aesthetic - dark asphalt, scarlet red, gold trophies
 * Fonts: Racing Sans One (display) + IBM Plex Sans (body)
 */

:root {
    /* Dark theme is the only theme - no switcher */
    --background: #0C0A09;
    --foreground: #FAFAF9;
    --card: #1A1612;
    --card-foreground: #FAFAF9;
    --popover: #1A1612;
    --popover-foreground: #FAFAF9;
    --primary: #EF4444;
    --primary-foreground: #000000;
    --secondary: #2D1F12;
    --secondary-foreground: #FAFAF9;
    --muted: #1E293B;
    --muted-foreground: #B8C2CF;
    --accent: #FBBF24;
    --accent-foreground: #0C0A09;
    --destructive: #F43F5E;
    --destructive-foreground: #000000;
    --border: #334155;
    --input: #1A1612;
    --ring: #EF4444;

    /* Semantic aliases */
    --asphalt: #0C0A09;
    --scarlet: #EF4444;
    --gold: #FBBF24;
    --bronze: #2D1F12;
    --dark-bronze: #1A1612;
    --slate: #334155;
    --cream: #FAFAF9;
    --sepia-overlay: rgba(112, 84, 50, 0.35);

    /* Typography */
    --font-display: "Racing Sans One", "Arial Narrow", sans-serif;
    --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 80px;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;

    /* Effects */
    --red-glow: 0 0 24px rgba(239, 68, 68, 0.45);
    --transition-base: 250ms ease-out;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--cream);
}

h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 75ch;
}

.section-title {
    font-family: var(--font-display);
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 70ch;
    margin-bottom: var(--space-lg);
}

.section-subtitle a,
.card-text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    font-weight: 600;
}

.section-subtitle a:hover,
.card-text a:hover {
    color: var(--cream);
    text-decoration-color: var(--cream);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FCA5A5;
    margin-bottom: var(--space-sm);
}

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

.text-scarlet {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container-max-1200 {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

@media (min-width: 1024px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

.section-header {
    margin-bottom: var(--space-lg);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--asphalt);
    border-bottom: 2px solid var(--slate);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo {
    border-radius: 8px;
    border: 2px solid var(--primary);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.brand-accent {
    color: var(--primary);
}

/* Desktop nav */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--cream);
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-base), color var(--transition-base);
}

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

.header-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--slate);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(7px) 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(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--asphalt);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-lg) var(--space-md);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        gap: var(--space-md);
    }

    .primary-nav.is-open {
        transform: translateX(0);
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 16px;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--slate);
    }

    .header-cta-group {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 14px 28px;
    min-height: 48px;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.btn-primary:hover {
    background: #DC2626;
    color: var(--primary-foreground);
    transform: scale(1.05);
    box-shadow: var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--slate);
}

.btn-outline:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.btn-gold {
    background: var(--gold);
    color: var(--accent-foreground);
    border-color: var(--gold);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 18px 36px;
    min-height: 56px;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 10px 20px;
    min-height: 44px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTIONS
   Full-bleed sepia-toned with model imagery
   ============================================ */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: clip;
    background: linear-gradient(135deg, #1a1208 0%, #0C0A09 60%, #1a0a08 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, #2D1F12 25%, transparent 25%),
        linear-gradient(-45deg, #2D1F12 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2D1F12 75%),
        linear-gradient(-45deg, transparent 75%, #2D1F12 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: sepia(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.6) 50%, rgba(12, 10, 9, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) var(--space-md);
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    color: var(--cream);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(239, 68, 68, 0.3);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin-bottom: var(--space-lg);
    max-width: 60ch;
    line-height: 1.5;
}

.hero-bonus-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--dark-bronze);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.hero-bonus-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.hero-bonus-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

.hero-micro {
    width: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-top: var(--space-sm);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    min-width: 0;
}

.card-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 8px 24px rgba(0,0,0,0.3);
}

.card-title {
    font-family: var(--font-display);
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: #CBD5E1;
    line-height: 1.6;
}

/* ============================================
   STAT BLOCK COMPONENT
   ============================================ */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: var(--space-md);
}

.stat-card {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
    min-width: 0;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    color: var(--gold);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--cream);
    margin-top: var(--space-xs);
    font-weight: 500;
}

.stat-source {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */

.cta-banner-section {
    position: relative;
    overflow: clip;
    background: var(--asphalt);
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, #1a1208 25%, transparent 25%),
        linear-gradient(-45deg, #1a1208 25%, transparent 25%);
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    padding: var(--space-xl) 0;
    text-align: center;
}

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

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-heading {
    font-family: var(--font-display);
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.cta-banner-subtext {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-btn {
    margin-bottom: var(--space-sm);
}

.cta-banner-micro {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   ============================================ */

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

@media (min-width: 1024px) {
    .faq-section {
        padding: var(--space-2xl) 0;
    }
}

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

.faq-item {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--cream);
    list-style: none;
    min-height: 48px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: #CBD5E1;
    line-height: 1.7;
}

.faq-answer p {
    max-width: none;
}

/* ============================================
   PROVIDER LOGO STRIP
   ============================================ */

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
}

.provider-tile {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
    text-align: center;
    min-width: 0;
    flex: 1 1 140px;
    max-width: 200px;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.provider-tile:hover {
    border-color: var(--primary);
    box-shadow: var(--red-glow);
}

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

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

/* ============================================
   TABLES
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.table-wrapper:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bronze);
    min-width: 0;
}

.styled-table thead {
    background: var(--primary);
}

.styled-table th {
    padding: var(--space-md);
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-foreground);
    white-space: nowrap;
}

.styled-table td {
    padding: var(--space-md);
    border-top: 1px solid var(--border);
    color: var(--cream);
    font-size: 0.95rem;
}

.styled-table tbody tr:hover {
    background: rgba(239, 68, 68, 0.08);
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: var(--gold);
    color: var(--accent-foreground);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */

.callout {
    background: var(--dark-bronze);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

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

.callout-title {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.callout-text {
    color: #CBD5E1;
    margin: 0;
    max-width: none;
}

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

.callout-text a:hover {
    color: var(--cream);
    text-decoration-color: var(--cream);
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */

.tldr-box {
    background: linear-gradient(135deg, var(--dark-bronze), var(--bronze));
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.tldr-title {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

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

.tldr-box li {
    padding-left: 24px;
    position: relative;
    margin-bottom: var(--space-xs);
    color: var(--cream);
}

.tldr-box li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    border-left: 4px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    line-height: 1.4;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    padding: var(--space-md) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--cream);
    font-weight: 500;
}

/* ============================================
   CHECKERED FLAG DIVIDER
   ============================================ */

.flag-divider {
    height: 24px;
    width: 100%;
    background-image:
        linear-gradient(45deg, var(--cream) 25%, transparent 25%),
        linear-gradient(-45deg, var(--cream) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--cream) 75%),
        linear-gradient(-45deg, transparent 75%, var(--cream) 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
    opacity: 0.3;
    border-top: 2px solid var(--slate);
    border-bottom: 2px solid var(--slate);
}

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

.site-footer {
    background: var(--asphalt);
    border-top: 2px solid var(--slate);
    padding: var(--space-2xl) 0 var(--space-xl);
}

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

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

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: #CBD5E1;
    font-size: 0.9rem;
}

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

.footer-text {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-badge {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--dark-bronze);
    border: 1px solid var(--slate);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gold);
    line-height: 1.5;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0ms);
}

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

/* ============================================
   VIP PROGRESS BAR
   ============================================ */

.vip-progress {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

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

@media (min-width: 1024px) {
    .vip-progress {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }
}

.vip-tier {
    position: relative;
    background: var(--asphalt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.vip-tier:hover {
    border-color: var(--primary);
    box-shadow: var(--red-glow);
    transform: translateY(-4px);
}

.vip-tier-4 {
    border-color: var(--gold);
}

.vip-tier-4:hover {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.45);
}

.vip-tier-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.vip-tier-4 .vip-tier-number {
    background: var(--gold);
    color: var(--accent-foreground);
}

.vip-tier-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.vip-tier-4 .vip-tier-name {
    color: var(--gold);
}

.vip-tier-benefit {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   CATEGORY GRID - 5 category cards
   ============================================ */

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

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

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

.category-card {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
    min-width: 0;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--red-glow);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.category-text {
    color: #CBD5E1;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   JACKPOT GRID - Featured jackpot slot cards
   ============================================ */

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

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

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

.jackpot-card {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
    min-width: 0;
}

.jackpot-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
    transform: translateY(-4px);
}

.jackpot-thumb {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.jackpot-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(250, 250, 249, 0.05) 48%, rgba(250, 250, 249, 0.05) 52%, transparent 52%);
    background-size: 20px 20px;
    pointer-events: none;
}

.jackpot-theme {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.jackpot-counter {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    z-index: 1;
    text-align: center;
}

.jackpot-card .card-title {
    padding: var(--space-md) var(--space-md) 0;
    font-size: 1.15rem;
}

.jackpot-card .card-text {
    padding: var(--space-xs) var(--space-md) var(--space-sm);
    font-size: 0.85rem;
    color: #CBD5E1;
    line-height: 1.5;
    margin: 0;
}

.jackpot-card .badge {
    margin: 0 var(--space-md) var(--space-md);
}

/* ============================================
   SPORTSBOOK BANNER - Full-width sepia banner
   ============================================ */

.sportsbook-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: clip;
    background: linear-gradient(135deg, #1a1208 0%, #0C0A09 50%, #1a0a08 100%);
}

.sportsbook-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, #2D1F12 25%, transparent 25%),
        linear-gradient(-45deg, #2D1F12 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2D1F12 75%),
        linear-gradient(-45deg, transparent 75%, #2D1F12 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.18;
    pointer-events: none;
}

.sportsbook-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.5) 100%);
    z-index: 1;
}

.sportsbook-content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) var(--space-md);
    max-width: 760px;
}

.sportsbook-content .section-title {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.sportsbook-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.sportsbook-pill {
    background: var(--dark-bronze);
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--cream);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* ============================================
   UTILITY GRID
   ============================================ */

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

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

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

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

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

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

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

/* ============================================
   TEXT PROSE
   ============================================ */

.prose {
    max-width: 75ch;
}

.prose p {
    margin-bottom: var(--space-md);
    color: #D1D5DB;
}

.prose a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(239, 68, 68, 0.4);
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.prose strong {
    color: var(--cream);
    font-weight: 600;
}

/* ============================================
   BREADCRUMB (visible)
   ============================================ */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.breadcrumb a {
    color: var(--muted-foreground);
}

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

.breadcrumb-separator {
    color: var(--slate);
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

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

.sitemap-item {
    background: var(--dark-bronze);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.sitemap-item:hover {
    border-color: var(--primary);
    box-shadow: var(--red-glow);
}

.sitemap-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

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

.sitemap-desc {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}