/* ============================================
   CLEOBETRA CASINO - DESIGN SYSTEM
   Dark luxury Egyptian theme: gold & turquoise
   on deep black-blue. Cinzel + Outfit typography.
   ============================================ */

:root {
    /* Dark theme is the only theme - no toggle */
    --bg-base: #080a12;
    --bg-deep: #050710;
    --bg-card: #0f172a;
    --bg-card-hover: #14213d;
    --bg-elevated: #1a2744;

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

    --gold: #d4af37;
    --gold-bright: #fbbf24;
    --gold-gradient: linear-gradient(135deg, #fbbf24, #d4af37, #b8941f);

    --turquoise: #40e0d0;
    --turquoise-bright: #2dd4bf;
    --turquoise-dark: #0d9488;

    --border-subtle: rgba(148, 163, 184, 0.15);
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-turquoise: rgba(64, 224, 208, 0.3);

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.25);
    --shadow-gold-strong: 0 0 32px rgba(212, 175, 55, 0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --font-display: "Cinzel", serif;
    --font-body: "Outfit", sans-serif;

    --container-max: 1200px;
    --section-gap: 60px;
    --grid-unit: 8px;
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 200ms ease;
}

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

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for headings, Outfit for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fg-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1em;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--turquoise);
    margin-bottom: 12px;
    display: block;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    scroll-margin-top: 80px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    .section {
        --section-gap: 100px;
    }
}

/* ============================================
   HEADER
   Sticky, dark, semi-transparent
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 10, 18, 0.95);
    border-bottom: 1px solid var(--border-subtle);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo {
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.logo-mark::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-gradient);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* Desktop navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg-secondary);
    padding: 8px 0;
    position: relative;
    transition: color 200ms ease;
}

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

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

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

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

/* ============================================
   MOBILE MENU TOGGLE (Hamburger)
   ============================================ */

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

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 250ms ease, opacity 200ms ease;
}

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

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

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

/* ============================================
   MOBILE NAV DRAWER
   Fixed full-screen panel below header
   ============================================ */

.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg-base);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    gap: 0;
    align-items: stretch;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

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

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 56px;
    font-size: 1.125rem;
    padding: 12px 0;
}

.primary-nav.is-open .nav-cta-group {
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 14px 28px;
    min-height: 44px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 250ms ease, background 200ms ease;
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn-primary {
    background: var(--turquoise);
    color: var(--bg-base);
    border-color: var(--turquoise);
}

.btn-primary:hover {
    background: var(--turquoise-bright);
    color: var(--bg-base);
    box-shadow: 0 0 24px rgba(64, 224, 208, 0.4);
}

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

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

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-base);
    border-color: var(--gold);
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold-strong);
    color: var(--bg-base);
}

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

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

/* ============================================
   HERO SECTION
   Full-bleed dark background with starry atmosphere
   ============================================ */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow-x: clip;
    padding: 60px 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(180deg, rgba(8, 10, 18, 0.5) 0%, rgba(8, 10, 18, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.125rem;
    color: var(--fg-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* ============================================
   STAT BLOCK COMPONENT
   Grid of metric cards with gold gradient numbers
   ============================================ */

.stat-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--turquoise);
}

.stat-source {
    display: block;
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-top: 8px;
}

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

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

/* ============================================
   CARD GRID - Game & feature cards
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
    min-width: 0;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.9375rem;
    color: var(--fg-secondary);
    line-height: 1.6;
}

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

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

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

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed section with Eye of Horus glow
   ============================================ */

.cta-banner-section {
    position: relative;
    padding: 60px 0;
    overflow-x: clip;
    background: linear-gradient(135deg, #050710 0%, #0f172a 50%, #050710 100%);
    text-align: center;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.cta-banner-section .container {
    position: relative;
    z-index: 1;
}

.cta-banner-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.cta-banner-subtext {
    color: var(--fg-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-btn {
    margin-bottom: 16px;
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@media (min-width: 768px) {
    .cta-banner-section {
        padding: 100px 0;
    }
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Details/summary based, no JS needed
   ============================================ */

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 250ms ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fg-primary);
    list-style: none;
    user-select: none;
}

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

.faq-question:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: -2px;
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 300ms ease;
}

.faq-icon::before {
    width: 16px;
    height: 3px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 3px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fg-secondary);
    animation: fadeInDown 300ms ease;
}

.faq-answer p {
    margin-bottom: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.25rem;
    }
}

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

.callout {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--turquoise);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

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

.callout-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 12px;
}

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

/* ============================================
   COMPARISON TABLE
   ============================================ */

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 400px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table thead th {
    background: var(--bg-elevated);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.comparison-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.comparison-table .highlight-col {
    background: rgba(64, 224, 208, 0.05);
}

.comparison-table td.highlight-col {
    color: var(--turquoise);
    font-weight: 600;
}

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

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
}

.trust-card-icon img {
    width: 32px;
    height: 32px;
}

.trust-card h3 {
    font-size: 1.0625rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--fg-secondary);
    margin-bottom: 0;
}

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

/* ============================================
   PAYMENT METHODS STRIP
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fg-muted);
    transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pay-badge:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.two-col .col-accent {
    border-left: 3px solid var(--gold);
    padding-left: 24px;
}

@media (max-width: 767px) {
    .two-col .col-accent {
        border-left: none;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ============================================
   CONTENT BLOCKS - SEO text sections
   ============================================ */

.content-block {
    max-width: 720px;
}

.content-block p {
    color: var(--fg-secondary);
    margin-bottom: 1em;
}

.content-block a {
    color: var(--turquoise);
    text-decoration: underline;
    text-decoration-color: rgba(64, 224, 208, 0.4);
    text-underline-offset: 3px;
}

.content-block a:hover {
    color: var(--gold-bright);
    text-decoration-color: var(--gold);
}

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

blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--fg-primary);
    line-height: 1.6;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--fg-muted);
}

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

.summary-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(64, 224, 208, 0.05));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

.summary-box-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.summary-box p {
    color: var(--fg-secondary);
    margin-bottom: 0;
}

/* ============================================
   VIP PYRAMID VISUAL
   ============================================ */

.vip-pyramid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.vip-tier {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease;
    width: 100%;
}

.vip-tier:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.vip-tier-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
}

.vip-tier-perk {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .vip-pyramid {
        flex-direction: row;
        align-items: flex-end;
    }
    .vip-tier:nth-child(1) { width: 18%; }
    .vip-tier:nth-child(2) { width: 22%; }
    .vip-tier:nth-child(3) { width: 26%; }
    .vip-tier:nth-child(4) { width: 30%; }
    .vip-tier:nth-child(5) { width: 34%; }
}

/* ============================================
   PROVIDER LOGO GRID
   ============================================ */

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.provider-logo {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fg-muted);
    transition: color 200ms ease, border-color 200ms ease;
    min-width: 0;
}

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

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

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

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 24px;
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--fg-secondary);
    transition: color 200ms ease;
}

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

.footer-link {
    color: var(--turquoise);
    text-decoration: underline;
}

.footer-note {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-age {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-top: 8px;
}

.footer-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-icons-row .pay-badge {
    min-width: 48px;
    height: 32px;
    font-size: 0.6875rem;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--fg-muted);
    margin-bottom: 0;
}

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

/* ============================================
   SCROLL ANIMATIONS
   Fade-in slide-up on viewport entry
   Only active when JS is available (html.js)
   ============================================ */

.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ============================================
   SECTION DIVIDER
   ============================================ */

.divider-gold {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 0 auto 32px;
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

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

.sitemap-header-section {
    padding-top: 60px;
    padding-bottom: 0;
    text-align: center;
}

.sitemap-header-section h1 {
    margin-bottom: 0;
}

.sitemap-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--fg-muted);
    font-size: 1rem;
    line-height: 1.6;
}

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

.sitemap-entry {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.sitemap-entry:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.sitemap-entry-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.sitemap-entry-title a {
    color: var(--gold);
    text-decoration: none;
    transition: color 200ms ease;
}

.sitemap-entry-title a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: var(--gold);
}

.sitemap-entry-desc {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sitemap-header-section {
        padding-top: 100px;
    }
    .sitemap-entry {
        padding: 32px 0;
    }
    .sitemap-entry-title {
        font-size: 1.375rem;
    }
    .sitemap-entry-desc {
        font-size: 0.9375rem;
    }
}

/* ============================================
   LIVE CASINO PAGE
   ============================================ */

.live-hero {
    min-height: 70vh;
}

@media (min-width: 768px) {
    .live-hero {
        min-height: 80vh;
    }
}

.provider-live-grid .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.provider-live-grid .card-image {
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: rgba(15, 23, 42, 0.5);
    padding: 16px;
}

.mobile-band {
    background: linear-gradient(135deg, #050710 0%, #0f172a 50%, #050710 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-features .trust-card {
    text-align: center;
}

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

.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;
}

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

@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;
    }
    .js .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

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