/*
 * Casina Casino - Design System
 * Theme: Spanish Corrida - dark charcoal-maroon with red/gold neon accents
 * Fonts: Cinzel Decorative (display) + Source Sans 3 (body)
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Colors - fixed dark theme */
    --background: #14090b;
    --foreground: #f6ead8;
    --card: #2b1217;
    --card-foreground: #f6ead8;
    --popover: #211014;
    --popover-foreground: #f6ead8;
    --primary: #c22f3c;
    --primary-foreground: #fff7ea;
    --secondary: #3a171d;
    --secondary-foreground: #f6ead8;
    --muted: #342026;
    --muted-foreground: #c89b96;
    --accent: #8f6b1f;
    --accent-foreground: #fff7ea;
    --destructive: #e21313;
    --destructive-foreground: #fff7ea;
    --border: #553139;
    --input: #241115;
    --ring: #d4af37;

    /* Typography */
    --font-display: "Cinzel Decorative", serif;
    --font-body: "Source Sans 3", sans-serif;
    --h1-size: 30px;
    --h2-size: 26px;
    --h3-size: 20px;
    --body-size: 17px;
    --body-lh: 1.6;
    --small-size: 14px;

    /* Spacing */
    --header-height: 60px;
    --section-pad: 56px;
    --card-pad: 22px;
    --gutter: 16px;
    --block-gap: 48px;
    --radius: 6px;
    --max-width: 1200px;
}

@media (min-width: 768px) {
    :root {
        --gutter: 24px;
    }
}

@media (min-width: 900px) {
    :root {
        --header-height: 72px;
    }
}

@media (min-width: 1024px) {
    :root {
        --h1-size: 52px;
        --h2-size: 38px;
        --h3-size: 24px;
        --section-pad: 72px;
        --card-pad: 32px;
    }
}

/* ============================================
   BASE RESET & OVERFLOW SAFETY
   ============================================ */
*, *::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);
    font-size: var(--body-size);
    line-height: var(--body-lh);
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--ring);
    text-decoration: none;
    transition: color 0.25s ease-out;
}

a:hover {
    color: #f5d76e;
}

ul, ol {
    list-style: none;
}

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

section {
    overflow: clip;
}

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

input, textarea, select {
    max-width: 100%;
    font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   Cinzel Decorative for H1/H2, Source Sans 3 for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-display);
    font-size: var(--h1-size);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

h2 {
    font-family: var(--font-display);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-family: var(--font-body);
    font-size: var(--h3-size);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
    max-width: 68ch;
}

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

/* ============================================
   GOLD TEXT GRADIENT
   ============================================ */
.gold-text {
    color: var(--ring);
    background-image: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fallback for browsers without background-clip */
@supports not (background-clip: text) {
    .gold-text {
        color: var(--ring);
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* ============================================
   FILIGREE FRAME
   Gold embroidered border, 2px stroke, inset 12px
   ============================================ */
.filigree-frame {
    position: relative;
    border: 2px solid var(--ring);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 0 4px rgba(212, 175, 55, 0.08),
        0 4px 24px rgba(0, 0, 0, 0.4);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

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

.section-title {
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 1024px) {
    .section-title {
        margin-bottom: 48px;
    }
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 3000;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 0 0 var(--radius) 0;
    transition: top 0.2s ease-out;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   HEADER & NAVIGATION
   Fixed dark header with brand, nav, CTA buttons
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 24px;
    }
}

.site-brand {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--ring);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-brand:hover {
    color: #f5d76e;
}

.site-brand__text {
    background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

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

/* Primary nav - mobile drawer */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 16px;
    flex-direction: column;
}

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

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

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

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
}

.nav-list a:hover {
    color: var(--ring);
    padding-left: 24px;
}

.header-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* Desktop nav */
@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        background: transparent;
        padding: 0;
        overflow: visible;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
    }

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

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

    .nav-list li {
        border-bottom: none;
    }

    .nav-list a {
        min-height: auto;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .nav-list a:hover {
        padding-left: 0;
    }

    .header-cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s, color 0.25s;
    text-align: center;
    border: 2px solid transparent;
}

.btn-login {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--border);
    min-height: 44px;
}

.btn-login:hover {
    border-color: var(--ring);
    color: var(--ring);
    transform: none;
}

.btn-register {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--primary);
    border: 2px solid var(--primary);
    min-height: 44px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(225, 29, 46, 0.5);
}

.btn-cta {
    position: relative;
    overflow: hidden;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--primary);
    border: 2px solid var(--primary);
    min-height: 52px;
    animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(225, 29, 46, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ring);
    transition: width 0.25s ease-out;
}

.btn-cta:hover::after {
    width: 100%;
}

.btn-cta:active {
    transform: translateY(0);
    background: #b81724;
}

/* ============================================
   HERO SECTIONS
   Full-bleed, min 85vh desktop, gold filigree frame
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 120px 0 56px;
    overflow: clip;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 9, 11, 0.92) 0%, rgba(20, 9, 11, 0.6) 50%, rgba(20, 9, 11, 0.85) 100%);
}

.hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, transparent 30%, rgba(225, 29, 46, 0.08) 40%, transparent 50%),
        linear-gradient(120deg, transparent 60%, rgba(225, 29, 46, 0.06) 70%, transparent 80%);
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .hero__content {
        padding: 0 24px;
    }
}

.hero__title {
    font-size: var(--h1-size);
    margin-bottom: 20px;
    max-width: 20ch;
}

.hero__subtext {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 50ch;
}

@media (min-width: 1024px) {
    .hero__subtext {
        font-size: 20px;
    }
}

.hero__cta {
    margin-bottom: 16px;
}

.hero__micro {
    font-size: var(--small-size);
    color: var(--muted-foreground);
}

/* Page hero (non-homepage) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 100px 0 48px;
    overflow: clip;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 9, 11, 0.88) 0%, rgba(20, 9, 11, 0.75) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero__content {
        padding: 0 24px;
    }
}

.page-hero__title {
    font-size: var(--h1-size);
    margin-bottom: 16px;
}

/* ============================================
   INFO CARD GRID
   1 col mobile, 2 col tablet, 3 col desktop
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gutter);
}

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

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

/* Two-item grids (e.g. Live Casino & Jackpots) balance into 2 columns on desktop */
@media (min-width: 1024px) {
    .info-card-grid:has(> .info-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 920px;
        margin: 0 auto;
    }
}

.info-card {
    background: var(--card);
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s;
    min-width: 0;
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border-color: #f5d76e;
}

.info-card__image {
    margin: -12px -12px 20px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

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

.info-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-card__body h3 {
    margin-bottom: 12px;
    color: var(--foreground);
}

.info-card__body p {
    color: var(--muted-foreground);
    font-size: var(--body-size);
    margin-bottom: 16px;
    flex: 1;
}

.card-link {
    color: #e74a57;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.25s;
}

.card-link:hover {
    color: #ff3b4c;
}

/* ============================================
   STAT BLOCK
   Row of large numbers with gold gradient + sword-stroke underline
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 20px;
    background: var(--card);
}

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

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ring), transparent);
}

.stat-label {
    font-size: 15px;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-note {
    font-size: var(--small-size);
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   Full-bleed with radial spotlight glow + filigree frame
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--section-pad) 16px;
    text-align: center;
    overflow: clip;
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100%;
    max-height: 100%;
    background: radial-gradient(circle, rgba(225, 29, 46, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 24px;
    background: rgba(43, 18, 23, 0.6);
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--section-pad) 24px;
    }

    .cta-banner__inner {
        padding: 64px 48px;
    }
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-banner__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-banner__micro {
    font-size: var(--small-size);
    color: var(--muted-foreground);
    margin-top: 20px;
}

/* ============================================
   FAQ ACCORDION
   Button-based, 300ms ease-out height, gold chevron
   ============================================ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-left-color 0.25s ease-out;
}

.faq-item.is-open {
    border-left-color: var(--ring);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 48px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    text-align: left;
    transition: color 0.25s;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--ring);
    transition: transform 0.3s ease-out;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    max-width: 68ch;
}

/* ============================================
   CALLOUT / SUMMARY BOXES
   ============================================ */
.callout {
    border: 1px solid var(--border);
    border-left: 3px solid var(--ring);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
    background: rgba(43, 18, 23, 0.5);
}

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

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

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

.callout__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.callout p {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.summary-box {
    border: 2px solid var(--ring);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    background: rgba(43, 18, 23, 0.6);
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ring);
    margin-bottom: 12px;
}

.summary-box p {
    color: var(--foreground);
    margin-bottom: 8px;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--muted-foreground);
    background: var(--card);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
}

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

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--foreground);
}

.comparison-table th {
    font-weight: 700;
    color: var(--ring);
    background: var(--card);
}

.comparison-table tr:hover td {
    background: rgba(212, 175, 55, 0.04);
}

.comparison-table .col-highlight {
    background: rgba(225, 29, 46, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--foreground);
    border-left: 3px solid var(--ring);
    padding: 20px 0 20px 28px;
    margin: 32px 0;
    max-width: 60ch;
    font-style: italic;
}

.pull-quote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 12px;
    font-weight: 400;
}

/* ============================================
   STEPS LIST
   ============================================ */
.steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.steps-list__item {
    counter-increment: step;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.steps-list__item::before {
    content: counter(step);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--ring);
    border-radius: 50%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--ring);
}

.steps-list__item > div {
    flex: 1;
    min-width: 0;
}

.steps-list__item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.steps-list__item p {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: var(--small-size);
    color: var(--muted-foreground);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--border);
}

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

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

.breadcrumb li:last-child {
    color: var(--foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border);
    padding: 48px 16px 24px;
}

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

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

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ring);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

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

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--card);
    transition: color 0.25s, border-color 0.25s;
}

.payment-icon:hover {
    color: var(--ring);
    border-color: var(--ring);
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--ring);
    border-radius: 50%;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 16px;
    color: var(--ring);
    margin-top: 12px;
}

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

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

/* ============================================
   RESPONSIBLE GAMBLING NOTICE
   ============================================ */
.responsible-notice {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(43, 18, 23, 0.4);
    margin: 24px 0;
}

.responsible-notice p {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 8px;
}

.responsible-notice .badge-18 {
    margin-top: 16px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(225, 29, 46, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(225, 29, 46, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Scroll reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered card delays */
.info-card-grid .info-card:nth-child(2) {
    transition-delay: 90ms;
}

.info-card-grid .info-card:nth-child(3) {
    transition-delay: 180ms;
}

.info-card-grid .info-card:nth-child(4) {
    transition-delay: 90ms;
}

.info-card-grid .info-card:nth-child(5) {
    transition-delay: 180ms;
}

.info-card-grid .info-card:nth-child(6) {
    transition-delay: 270ms;
}

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

    .btn-cta {
        animation: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.lead p {
    font-size: 19px;
}

/* Content article body */
.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--foreground);
}

.article-body ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-body ul li {
    margin-bottom: 8px;
    color: var(--foreground);
}

.article-body strong {
    color: var(--ring);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 360px) {
    .stat-block {
        grid-template-columns: 1fr;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ============================================
   HOMEPAGE - HERO
   ============================================ */
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero--home .hero__bg img {
    object-position: 70% 25%;
}

@media (max-width: 767px) {
    .hero--home .hero__bg img {
        object-position: 62% 20%;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--ring);
    border-radius: 999px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--ring);
    background: rgba(20, 9, 11, 0.6);
}

.hero__text {
    max-width: 640px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 17px;
    color: var(--foreground);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: rgba(20, 9, 11, 0.5);
    transition: border-color 0.25s, color 0.25s;
}

.hero__secondary:hover {
    border-color: var(--ring);
    color: var(--ring);
}

/* Inner-page hero variant: 85vh per blueprint, focal point tuned for object scenes */
.hero--page {
    min-height: 85vh;
}

.hero--page .hero__bg img {
    object-position: 65% 40%;
}

@media (max-width: 767px) {
    .hero--page .hero__bg img {
        object-position: 60% 35%;
    }
}

/* ============================================
   HOMEPAGE - BONUS FIGURE & SWORD FLOURISH
   ============================================ */
.bonus-figure {
    display: block;
    font-weight: 900;
    font-size: clamp(36px, 8vw, 64px);
    line-height: 1.1;
    text-align: center;
}

.sword-flourish {
    display: block;
    width: 220px;
    max-width: 60%;
    height: auto;
    margin: 4px auto 0;
}

/* ============================================
   HOMEPAGE - VIP TEASER
   ============================================ */
.vip-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .vip-teaser {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.vip-teaser__media {
    position: relative;
    padding: 12px;
    background: var(--card);
    overflow: hidden;
}

.vip-teaser__media::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(225, 29, 46, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.vip-teaser__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.vip-teaser__body p {
    color: var(--foreground);
    margin-bottom: 20px;
}

.vip-teaser__body strong {
    color: var(--ring);
    font-weight: 700;
}

/* ============================================
   HOMEPAGE - PAYMENT STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: center;
    justify-content: center;
    margin: 32px 0 8px;
}

.payment-strip img {
    height: 44px;
    width: auto;
    transition: transform 0.25s ease-out;
}

.payment-strip img:hover {
    transform: translateY(-2px);
}

/* ============================================
   SITEMAP PAGE - Page list with gold bullets
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.sitemap-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: var(--card-pad);
    background: var(--card);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s;
}

.sitemap-item:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border-color: #f5d76e;
}

.sitemap-bullet {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
}

.sitemap-item__body {
    flex: 1;
    min-width: 0;
}

.sitemap-link {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    color: var(--ring);
    margin-bottom: 8px;
}

.sitemap-link:hover {
    color: #f5d76e;
}

.sitemap-item__body p {
    color: var(--muted-foreground);
    font-size: var(--body-size);
    margin-bottom: 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;
}
