/* ============================================
   CSS STYLES - Casina Casino Design System
   Theme: Dark corrida-night arena (fixed, no switcher)
   Fonts: Cinzel (display) + Manrope (body)
   Palette: oxblood-charcoal, crimson, molten gold
   ============================================ */

:root {
    --background: #14100f;
    --background-panel: #1c1513;
    --foreground: #f3e9d7;
    --card: #2a201c;
    --card-foreground: #f3e9d7;
    --popover: #1c1513;
    --popover-foreground: #f3e9d7;
    --primary: #e6b13c;
    --primary-foreground: #14100f;
    --secondary: #c8102e;
    --secondary-foreground: #fffaf0;
    --muted: #2a201c;
    --muted-foreground: #c9b8a3;
    --accent: #e2683c;
    --accent-foreground: #14100f;
    --border: #6e5624;
    --border-dark: #3d2f1e;
    --input: #1c1513;
    --ring: #e6b13c;

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

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

    /* Layout */
    --max-width: 1200px;
    --max-width-wide: 1280px;
    --header-height: 64px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-card: 14px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 600ms ease;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #f4d06f 0%, #e6b13c 45%, #c8901e 100%);
    --red-gradient: linear-gradient(135deg, #e63950 0%, #c8102e 50%, #9a0a22 100%);
    --ember-gradient: linear-gradient(135deg, #e2683c 0%, #c8102e 100%);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lift: 0 8px 40px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 20px rgba(230, 177, 60, 0.3);
}

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

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

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

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

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

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

a:hover {
    color: #f4d06f;
}

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

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

section {
    overflow: clip;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-body);
}

p {
    margin-bottom: 24px;
}

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

.crimson-text {
    color: var(--secondary);
}

.ember-text {
    color: var(--accent);
}

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

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

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

.section {
    padding: 56px 0;
}

.section--tight {
    padding: 40px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    min-height: 48px;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 2px 12px rgba(230, 177, 60, 0.3);
}

.btn-primary:hover {
    color: var(--primary-foreground);
    filter: brightness(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 20px rgba(230, 177, 60, 0.5);
}

.btn-secondary {
    background: var(--red-gradient);
    color: var(--secondary-foreground);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    color: var(--secondary-foreground);
    filter: brightness(1.1);
}

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

.btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-cta-large {
    font-size: 18px;
    padding: 16px 40px;
    min-height: 56px;
    width: 100%;
    max-width: 360px;
}

/* Buttons placed inside content sections must keep their
   own colors (content-section__inner a would otherwise
   recolor them gold-on-gold and underline them). */
.content-section__inner a.btn {
    text-decoration: none;
}

.content-section__inner a.btn-primary,
.content-section__inner a.btn-primary:hover {
    color: var(--primary-foreground);
}

.content-section__inner a.btn-secondary,
.content-section__inner a.btn-secondary:hover {
    color: var(--secondary-foreground);
}

.content-section__inner a.btn-outline,
.content-section__inner a.btn-outline:hover {
    color: var(--foreground);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 16, 15, 0.92);
    border-bottom: 1px solid var(--border-dark);
}

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

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

.site-brand__mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.site-brand:hover .site-brand__text {
    color: var(--primary);
}

.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    min-height: 40px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(230, 177, 60, 0.08);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.btn-nav-login {
    padding: 8px 20px;
    min-height: 40px;
    font-size: 15px;
}

.btn-nav-register {
    padding: 8px 20px;
    min-height: 40px;
    font-size: 15px;
}

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

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 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);
}

/* Nav scrim */
.nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-scrim.is-visible {
    display: block;
    opacity: 1;
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */

@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        overflow-y: auto;
        display: none;
        flex-direction: column;
        padding: 24px 16px;
    }

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

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

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 14px 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--border-dark);
        border-radius: 0;
    }

    .nav-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-left: 0;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-dark);
    }

    .nav-cta-group .btn {
        width: 100%;
        min-height: 48px;
    }
}

/* ============================================
   DESKTOP NAV
   ============================================ */

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

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

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

.site-footer {
    background: var(--background-panel);
    border-top: 1px solid var(--border-dark);
    padding: 48px 0 24px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-license-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
}

.footer-compliance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(230, 177, 60, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.footer-disclaimer {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

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

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

/* ============================================
   MULETA SLASH - Diagonal section divider
   ============================================ */

.muleta-divider {
    position: relative;
    height: 48px;
    overflow: hidden;
}

.muleta-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 3px;
    background: var(--red-gradient);
    transform: translateY(-50%) rotate(-2deg);
    box-shadow: 0 0 12px rgba(200, 16, 46, 0.4);
}

.muleta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 1px;
    background: var(--gold-gradient);
    transform: translateY(calc(-50% + 6px)) rotate(-2deg);
    opacity: 0.6;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 48px 0;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--background) 0%, rgba(20, 16, 15, 0.85) 50%, rgba(20, 16, 15, 0.5) 100%);
}

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

.hero__headline {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero__subtext {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.6;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.hero__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

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

    .hero__headline {
        font-size: 42px;
    }

    .hero__subtext {
        font-size: 20px;
    }

    .hero__cta-group {
        flex-direction: row;
        align-items: center;
    }
}

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

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

.stat-section {
    padding: 48px 0;
}

.stat-row {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: var(--card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-dark);
    padding: 32px 16px;
}

.stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
}

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

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

@media (min-width: 768px) {
    .stat-row {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 32px;
    }

    .stat-number {
        font-size: 56px;
    }
}

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

/* ============================================
   PROMO CARD GRID COMPONENT
   ============================================ */

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

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

.promo-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-lift), var(--glow-gold);
}

.promo-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.promo-card__icon {
    font-size: 36px;
    padding: 24px 24px 0;
    text-align: center;
}

.promo-card__body {
    padding: 24px;
}

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

.promo-card__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
}

.promo-card__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.promo-card__link:hover {
    color: #f4d06f;
}

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

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

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

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #1c1513 0%, #2a201c 50%, #1c1513 100%);
    overflow: hidden;
    padding: 64px 0;
    text-align: center;
}

.cta-banner__slash {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 4px;
    pointer-events: none;
}

.cta-banner__slash--red {
    top: 20%;
    background: var(--red-gradient);
    transform: rotate(-8deg);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
    animation: shimmer-slash 12s ease-in-out infinite;
}

.cta-banner__slash--gold {
    bottom: 20%;
    height: 1px;
    background: var(--gold-gradient);
    transform: rotate(-8deg);
    opacity: 0.5;
    animation: shimmer-slash 12s ease-in-out infinite 2s;
}

@keyframes shimmer-slash {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;
}

.cta-banner__heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.cta-banner__content .btn-cta-large {
    margin: 0 auto;
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

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

    .cta-banner__heading {
        font-size: 38px;
    }
}

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

.faq-section {
    padding: 48px 0;
}

.faq-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-dark);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    min-height: 48px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    transition: color var(--transition-fast);
}

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

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

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
}

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

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

.faq-answer p {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-card);
    padding: 24px;
    margin: 24px 0;
}

.summary-box__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.summary-box p {
    margin: 0;
    color: var(--foreground);
}

/* Callout / highlight box */
.callout {
    background: rgba(200, 16, 46, 0.1);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.callout__icon {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--secondary);
}

.callout__body {
    flex: 1;
    min-width: 0;
}

.callout__body p {
    margin: 0;
    color: var(--foreground);
}

/* Stat highlight (inline) */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
    background: var(--card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-dark);
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-highlight__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

/* Pull quote */
.pull-quote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 3px solid var(--primary);
    background: var(--card);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.pull-quote__text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 12px;
}

.pull-quote__cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* 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;
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    min-width: 480px;
}

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

.comparison-table th {
    background: var(--background-panel);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

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

.comparison-table tbody tr:hover {
    background: rgba(230, 177, 60, 0.05);
}

.comparison-table .col-highlight {
    background: rgba(230, 177, 60, 0.08);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.section-intro {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 680px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 38px;
    }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
    padding: 56px 0;
}

.content-section__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

.content-section__inner p {
    margin-bottom: 24px;
    max-width: 68ch;
}

.content-section__inner h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-section__inner h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-section__inner ul,
.content-section__inner ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-section__inner li {
    margin-bottom: 12px;
    max-width: 68ch;
}

.content-section__inner a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(230, 177, 60, 0.4);
    text-underline-offset: 3px;
}

.content-section__inner a:hover {
    text-decoration-color: var(--primary);
}

@media (min-width: 768px) {
    .content-section {
        padding: 96px 0;
    }
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Staggered children */
.animate-on-scroll.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.animate-on-scroll.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.animate-on-scroll.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.animate-on-scroll.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.animate-on-scroll.is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* ============================================
   HERO EMBERS - Particle animation
   ============================================ */

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: ember-rise 8s ease-in infinite;
}

@keyframes ember-rise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-300px) translateX(20px);
    }
}

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

@media (min-width: 1024px) {
    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 26px;
    }
}

/* ============================================
   ACCESSIBILITY - Focus states
   ============================================ */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

    .ember {
        display: none;
    }

    .cta-banner__slash--red,
    .cta-banner__slash--gold {
        animation: none;
    }
}

/* ============================================
   WELCOME PACKAGE - Stage cards (index.html)
   ============================================ */

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

.stage-card {
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-gradient);
}

.stage-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-lift), var(--glow-gold);
}

.stage-card__step {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.stage-card__title {
    font-size: 24px;
    margin-bottom: 8px;
}

.stage-card__fs {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

/* Payment strip icons */
.payment-strip__item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.sitemap-list {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

.sitemap-list li {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
}

.sitemap-list h3 {
    margin-bottom: 8px;
}

.sitemap-list a {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

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

/* ============================================
   VIP TABLE
   ============================================ */

.vip-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    min-width: 560px;
}

.vip-table th,
.vip-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-dark);
    font-size: 15px;
}

.vip-table th {
    background: var(--background-panel);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.vip-table .vip-tier-name {
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

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

.payment-strip {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.payment-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.payment-strip__item:hover {
    border-color: var(--primary);
    color: var(--foreground);
}

/* ============================================
   INLINE IMAGE - Hero side image
   ============================================ */

.hero-with-image {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero-with-image__text {
    flex: 1;
    min-width: 0;
}

.hero-with-image__media {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.hero-with-image__media img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-dark);
}

@media (min-width: 768px) {
    .hero-with-image {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   JACKPOT COUNTER
   ============================================ */

.jackpot-counter {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
}

.jackpot-counter__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.jackpot-counter__value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@media (min-width: 768px) {
    .jackpot-counter__value {
        font-size: 48px;
    }
}

/* ============================================
   SPLIT SECTION (jackpots + live)
   ============================================ */

.split-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   CRYPTO ICONS ROW
   ============================================ */

.crypto-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 24px 0;
}

.crypto-icons img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* ============================================
   VIP FIGURE & KEY POINTS (bonus.html)
   ============================================ */

.vip-figure {
    display: flex;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 0 16px;
}

.vip-figure img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(230, 177, 60, 0.35));
}

@media (min-width: 768px) {
    .vip-figure img {
        width: 180px;
        height: 180px;
    }
}

.key-points {
    list-style: none;
    padding-left: 0 !important;
}

.key-points li {
    position: relative;
    padding-left: 28px;
}

.key-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--gold-gradient);
    transform: rotate(45deg);
    border-radius: 2px;
}

/* ============================================
   GENERIC IMAGE FIGURE
   ============================================ */

.figure-inline {
    margin: 24px 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.figure-inline img {
    width: 100%;
    display: block;
}

.figure-inline figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--muted-foreground);
    background: var(--card);
}

/* ============================================
   PROVIDER LOGO CARDS (spiele.html)
   ============================================ */

.promo-card__image--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 60%, rgba(200, 16, 46, 0.18) 0%, rgba(20, 16, 15, 0.6) 70%);
}

.promo-card__image--logo img {
    object-fit: contain;
    padding: 20px;
    filter: drop-shadow(0 0 14px rgba(230, 177, 60, 0.25));
}

/* ============================================
   JACKPOT TRIO (spiele.html split section)
   ============================================ */

.jackpot-trio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.jackpot-trio .jackpot-counter__value {
    font-size: 26px;
}

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

    .jackpot-trio .jackpot-counter__value {
        font-size: 22px;
    }
}

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