/*
 * MILLIONER CASINO - DESIGN SYSTEM
 * Luxury dark theme: obsidian base, metallic gold, emerald accents.
 * Single fixed dark theme (no theme switcher per brief).
 * Fonts: Playfair Display (headings), Manrope (body).
 */

:root {
    --background: #12100E;
    --foreground: #f8f3e9;
    --card: #1E1A16;
    --card-foreground: #f8f3e9;
    --popover: #1E1A16;
    --popover-foreground: #f8f3e9;
    --primary: #D4AF37;
    --primary-foreground: #1E1A16;
    --secondary: #1E1A16;
    --secondary-foreground: #f8f3e9;
    --muted: #2A241E;
    --muted-foreground: #A99F8C;
    --accent: #1F6F50;
    --accent-foreground: #f8f3e9;
    --destructive: #c75852;
    --destructive-foreground: #f8f3e9;
    --border: #4A4033;
    --input: #1E1A16;
    --ring: #D4AF37;

    /* Luxury tokens */
    --gold: #D4AF37;
    --gold-bright: #EFCE5E;
    --gold-border: rgba(212, 175, 55, 0.3);
    --gold-border-strong: rgba(212, 175, 55, 0.55);
    --emerald: #1F6F50;
    --emerald-bright: #2E9C70;

    /* Typography */
    --font-heading: "Playfair Display", "Georgia", serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;

    /* Spacing rhythm (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-7: 56px;
    --space-12: 96px;

    --radius: 16px;
    --header-h: 72px;
    --container: 1200px;
    --transition: 250ms ease-out;
}

/* Single fixed dark theme - .dark kept identical to :root */
.dark {
    --background: #12100E;
    --foreground: #f8f3e9;
    --card: #1E1A16;
    --card-foreground: #f8f3e9;
    --popover: #1E1A16;
    --popover-foreground: #f8f3e9;
    --primary: #D4AF37;
    --primary-foreground: #1E1A16;
    --secondary: #1E1A16;
    --secondary-foreground: #f8f3e9;
    --muted: #2A241E;
    --muted-foreground: #A99F8C;
    --accent: #1F6F50;
    --accent-foreground: #f8f3e9;
    --destructive: #c75852;
    --destructive-foreground: #f8f3e9;
    --border: #4A4033;
    --input: #1E1A16;
    --ring: #D4AF37;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE - Document and typography foundation
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--foreground);
    margin: 0 0 var(--space-2);
}

h1 { font-size: clamp(30px, calc(4vw + 14px), 52px); }
h2 { font-size: clamp(26px, calc(2.4vw + 12px), 36px); font-weight: 600; }
h3 { font-size: clamp(20px, calc(1.4vw + 10px), 24px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; }

p {
    margin: 0 0 var(--space-2);
    max-width: 68ch;
}

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

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

ul, ol {
    margin: 0 0 var(--space-2);
    padding-left: var(--space-3);
}

li { margin-bottom: var(--space-1); }

strong { color: var(--foreground); }

::selection {
    background: var(--gold);
    color: var(--primary-foreground);
}

.skip-link {
    position: absolute;
    left: var(--space-2);
    top: -60px;
    z-index: 1100;
    background: var(--gold);
    color: var(--primary-foreground);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus { top: var(--space-1); }

/* ============================================
   LAYOUT - Containers and section rhythm
   .container  - 1200px centered content
   .section    - vertical rhythm (56px mobile / 96px desktop)
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
}

.section__head {
    margin-bottom: var(--space-4);
    max-width: 760px;
}

.section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 900px) {
    .section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }
    .container {
        padding-left: var(--space-3);
        padding-right: var(--space-3);
    }
}

/* ============================================
   KICKER - Uppercase gold eyebrow above headings
   ============================================ */
.kicker {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 var(--space-2);
    max-width: none;
}

/* ============================================
   KEYLINE - Signature double gold border
   1px outer line, 2px gap, 1px inner line
   ============================================ */
.keyline {
    position: relative;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
}

.keyline::before {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid var(--gold-border);
    border-radius: calc(var(--radius) - 4px);
    pointer-events: none;
}

/* ============================================
   BUTTONS - Gold solid, ghost outline, emerald
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    overflow: hidden;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition),
                transform var(--transition);
}

.btn--gold {
    background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 55%, #B8963C 100%);
    color: var(--primary-foreground);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}

.btn--gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 450ms ease-out;
    pointer-events: none;
}

.btn--gold:hover {
    color: var(--primary-foreground);
    box-shadow: 0 6px 26px rgba(212, 175, 55, 0.42);
    transform: translateY(-1px);
}

.btn--gold:hover::after { left: 130%; }

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--gold-border-strong);
}

.btn--ghost:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

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

.btn--emerald:hover {
    color: var(--accent-foreground);
    background: var(--emerald-bright);
}

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

/* ============================================
   HEADER - Sticky frosted dark glass bar
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 16, 14, 0.94);
    border-bottom: 1px solid var(--gold-border);
}

@media (min-width: 900px) {
    .site-header {
        background: rgba(18, 16, 14, 0.78);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    max-width: var(--container);
    height: var(--header-h);
    margin: 0 auto;
    padding: 0 var(--space-2);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    z-index: 1001;
}

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

.site-brand__accent { color: var(--gold); }

.site-brand__mark { flex-shrink: 0; border-radius: 8px; }

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 1001;
}

.site-header__actions .btn {
    min-height: 44px;
    padding: 8px 20px;
    font-size: 15px;
}

.site-header__login { display: none; }

@media (min-width: 640px) {
    .site-header__login { display: inline-flex; }
}

/* Mobile: keep the hamburger inside the viewport - the drawer
   already provides Login/Registrieren actions, so the header
   gold CTA is hidden below the drawer breakpoint. */
@media (max-width: 899px) {
    .site-header__actions .btn--gold { display: none; }
}

/* ============================================
   PRIMARY NAV + MOBILE DRAWER
   Below 900px: full-screen slide-in drawer.
   ============================================ */
.primary-nav {
    display: none;
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: var(--foreground);
    font-weight: 600;
    font-size: 16px;
}

.primary-nav__link:hover { color: var(--gold-bright); }

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: var(--space-3) var(--space-2) var(--space-4);
    margin-top: auto;
}

.primary-nav__actions .btn { width: 100%; }

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}

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

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

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

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

    .primary-nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--space-2);
    }

    .primary-nav__link {
        font-size: 20px;
        font-family: var(--font-heading);
        padding: 12px var(--space-2);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
}

@media (min-width: 900px) {
    .primary-nav {
        display: flex;
        align-items: center;
    }

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

    .primary-nav__link {
        position: relative;
        padding: 4px 2px;
    }

    .primary-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 100%;
        bottom: 2px;
        height: 2px;
        background: var(--gold);
        transition: right var(--transition);
    }

    .primary-nav__link:hover::after { right: 0; }

    .primary-nav__actions { display: none; }

    .menu-toggle { display: none; }
}

/* ============================================
   HERO - Full-bleed cinematic banner
   .hero          - wrapper, clips decorative particles
   .hero__media   - background image with gradient overlay
   .hero__content - foreground copy block
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(88vh, 760px);
    overflow: clip;
    background: var(--background);
}

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

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 16, 14, 0.96) 0%, rgba(18, 16, 14, 0.82) 38%, rgba(18, 16, 14, 0.35) 70%, rgba(18, 16, 14, 0.55) 100%),
                linear-gradient(0deg, var(--background) 0%, transparent 30%);
}

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

.hero__text { max-width: 620px; }

.hero__title {
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero__lead {
    font-size: 19px;
    color: var(--foreground);
    margin-bottom: var(--space-3);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-2);
}

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

/* Drifting gold particles (pure CSS, disabled for reduced motion) */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: clip;
}

.gold-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bright) 0%, rgba(212, 175, 55, 0) 70%);
    opacity: 0.7;
    animation: particle-drift 12s linear infinite;
}

.gold-particle:nth-child(1) { left: 12%; top: 80%; animation-duration: 11s; }
.gold-particle:nth-child(2) { left: 28%; top: 90%; animation-duration: 14s; animation-delay: 2s; width: 4px; height: 4px; }
.gold-particle:nth-child(3) { left: 46%; top: 85%; animation-duration: 10s; animation-delay: 4s; }
.gold-particle:nth-child(4) { left: 62%; top: 92%; animation-duration: 15s; animation-delay: 1s; width: 5px; height: 5px; }
.gold-particle:nth-child(5) { left: 78%; top: 88%; animation-duration: 12s; animation-delay: 3s; width: 4px; height: 4px; }
.gold-particle:nth-child(6) { left: 90%; top: 82%; animation-duration: 13s; animation-delay: 5s; }

@keyframes particle-drift {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-70vh) translateX(24px); opacity: 0; }
}

/* ============================================
   TICKER - Latest winners strip
   Static horizontal scroll-snap strip (no marquee).
   ============================================ */
.ticker {
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    background: var(--card);
}

.ticker__inner {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px var(--space-2);
}

.ticker__label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-bright);
    box-shadow: 0 0 8px var(--emerald-bright);
    animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.ticker__track {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ticker__track::-webkit-scrollbar { display: none; }

.ticker__item {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 14px;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.ticker__item strong { color: var(--foreground); font-weight: 600; }
.ticker__win { color: var(--gold); font-weight: 700; }

/* ============================================
   CARDS - Espresso content containers
   .card         - base card on --card background
   .card-grid    - responsive card grid
   ============================================ */
.card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: var(--space-3);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border-strong);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.12);
}

.card__title { margin-bottom: var(--space-1); }

.card__text {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 0;
}

.card--emerald { border-color: rgba(46, 156, 112, 0.4); }
.card--emerald:hover { border-color: var(--emerald-bright); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(46, 156, 112, 0.15); }

.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

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

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

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

/* ============================================
   SPLIT - Two-column media + copy layouts
   ============================================ */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

.split__media img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--gold-border);
}

.split__media--naked img {
    border: none;
    border-radius: 0;
}

@media (min-width: 900px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split--media-right .split__media { order: 2; }
}

/* ============================================
   GAME GRID - Slot thumbnails with hover lift
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
}

@media (min-width: 640px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
}

.game-card {
    position: relative;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    background: var(--card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.game-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 22px rgba(212, 175, 55, 0.18);
}

.game-card:hover img { transform: scale(1.02); }

.game-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--primary-foreground);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}

.game-card__name {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   FILTER PILLS - Category pills above grids
   ============================================ */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-3);
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--card);
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.pill:hover, .pill.is-active {
    color: var(--primary-foreground);
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================
   STAT HIGHLIGHT - Count-up figures (component)
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

.stat-highlight--framed {
    background: var(--card);
    padding: var(--space-3);
}

@media (min-width: 640px) {
    .stat-highlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
    .stat-highlight {
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: none;
    }

    .stat-highlight__item + .stat-highlight__item {
        border-left: 1px solid var(--gold-border);
    }
}

.stat-highlight__item {
    padding: var(--space-3);
    text-align: center;
}

.stat-highlight__number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(3vw + 18px), 48px);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(160deg, var(--gold-bright), var(--gold) 60%, #A98F2E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

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

.stat-highlight__caption {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER - Conversion block (component)
   ============================================ */
.cta-banner {
    padding: var(--space-7) var(--space-2);
}

.cta-banner__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
    text-align: center;
    background: var(--card);
}

.cta-banner__title { margin-bottom: var(--space-2); }

.cta-banner__copy {
    color: var(--muted-foreground);
    margin: 0 auto var(--space-3);
    max-width: 60ch;
}

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

@media (min-width: 900px) {
    .cta-banner { padding: var(--space-12) var(--space-3); }
    .cta-banner__inner { padding: 64px var(--space-5); }
}

/* ============================================
   FAQ ACCORDION - details/summary (component)
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    max-width: 780px;
}

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

.faq-item[open] {
    border-left: 3px solid var(--gold);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    min-height: 56px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

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

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

.faq-item__chevron {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform var(--transition);
    margin-top: -4px;
}

.faq-item[open] .faq-item__chevron { transform: rotate(225deg); margin-top: 4px; }

.faq-item__answer {
    overflow: hidden;
}

.faq-item__answer-inner {
    padding: 0 20px 20px;
}

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

/* ============================================
   TL;DR BOX + CALLOUT - Summary & highlight boxes
   ============================================ */
.tldr, .callout {
    background: var(--card);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: var(--space-3);
    margin: var(--space-3) 0;
    max-width: 780px;
}

.tldr__title, .callout__title {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-1);
}

.tldr ul, .callout ul { margin-bottom: 0; }
.tldr li, .callout li { color: var(--muted-foreground); }
.tldr p:last-child, .callout p:last-child { margin-bottom: 0; }

.callout--emerald { border-left-color: var(--emerald-bright); }
.callout--emerald .callout__title { color: var(--emerald-bright); }

/* ============================================
   PULL QUOTE - Oversized serif quote
   ============================================ */
.pull-quote {
    position: relative;
    margin: var(--space-4) 0;
    padding: var(--space-4) var(--space-3) var(--space-3) var(--space-4);
    max-width: 720px;
}

.pull-quote::before {
    content: "\201C";
    position: absolute;
    top: -8px;
    left: 0;
    font-family: var(--font-heading);
    font-size: 96px;
    line-height: 1;
    color: var(--gold);
}

.pull-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(20px, calc(1.6vw + 12px), 26px);
    line-height: 1.4;
    color: var(--foreground);
}

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

/* ============================================
   TESTIMONIAL - Social proof card
   ============================================ */
.testimonial {
    background: var(--card);
    padding: var(--space-4) var(--space-3);
    max-width: 760px;
}

.testimonial__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: var(--space-2);
}

.testimonial__person {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.testimonial__person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-border-strong);
}

.testimonial__name { font-weight: 700; color: var(--foreground); display: block; }
.testimonial__role { font-size: 14px; color: var(--muted-foreground); }

/* ============================================
   TRUST ROW - Badges: license, 18+, protection
   ============================================ */
.trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}

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

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: var(--space-3);
}

.trust-card img { width: 64px; height: 64px; object-fit: contain; }

.trust-card__title { font-weight: 700; color: var(--foreground); }
.trust-card__text { font-size: 14px; color: var(--muted-foreground); margin: 0; }

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: var(--destructive);
    font-weight: 800;
    font-size: 14px;
}

/* ============================================
   PROVIDER STRIP - Muted grayscale logo row
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}

.provider-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted-foreground);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter var(--transition), opacity var(--transition), border-color var(--transition);
}

.provider-strip__item:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--gold-border-strong);
}

/* ============================================
   PAYMENT BADGES - Footer payment pills
   ============================================ */
.payment-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.payment-badges__item {
    margin: 0;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    filter: grayscale(1);
}

/* ============================================
   COMPARISON TABLE - Highlighted recommended column
   ============================================ */
.table-wrapper {
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    overflow-x: auto;
    background: var(--card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 560px;
}

.data-table th, .data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.data-table thead th {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-border);
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table td { color: var(--muted-foreground); }
.data-table td:first-child { color: var(--foreground); font-weight: 600; }

.data-table .is-recommended {
    background: rgba(212, 175, 55, 0.07);
    color: var(--foreground);
}

/* ============================================
   STEP FLOW - Numbered process (KYC etc.)
   ============================================ */
.step-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: steps;
}

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

.step-flow__item {
    counter-increment: steps;
    background: var(--card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: var(--space-3);
    text-align: center;
}

.step-flow__item::before {
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.step-flow__title { display: block; font-weight: 700; margin-bottom: 6px; }
.step-flow__text { font-size: 15px; color: var(--muted-foreground); margin: 0; }

/* ============================================
   FOOTER - Four-column dark luxury footer
   ============================================ */
.site-footer {
    border-top: 1px solid var(--gold-border);
    background: #0D0B09;
    margin-top: var(--space-7);
}

.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-7) var(--space-2) var(--space-3);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

.site-brand--footer { font-size: 19px; margin-bottom: var(--space-2); }

.site-footer__tagline {
    font-size: 15px;
    color: var(--muted-foreground);
}

.site-footer__age {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.site-footer__heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-2);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li { margin-bottom: 10px; }

.site-footer__links a {
    color: var(--muted-foreground);
    font-size: 15px;
}

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

.site-footer__legal {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: var(--space-3);
}

.site-footer__license,
.site-footer__protection {
    font-size: 13px;
    color: var(--muted-foreground);
    max-width: 100%;
}

.site-footer__protection a { text-decoration: underline; }

/* ============================================
   SCROLL ANIMATIONS - Fade-in slide-up reveals
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
}

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

/* ============================================
   REDUCED MOTION - Disable decorative motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .gold-particle,
    .live-dot {
        animation: none;
    }

    .gold-particle { display: none; }

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

    .btn, .card, .game-card, .faq-item__chevron {
        transition: none;
    }

    .btn--gold::after { display: none; }
}

/* ============================================
   HOMEPAGE - Welcome card, VIP gems, game filter
   ============================================ */
.welcome-card {
    background: var(--card);
    padding: var(--space-4) var(--space-3);
}

@media (min-width: 900px) {
    .welcome-card { padding: var(--space-5); }
}

.game-card.is-hidden { display: none; }

.pill { cursor: pointer; font-family: var(--font-body); }

.vip-gems {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: var(--space-3);
    margin: var(--space-3) 0;
}

.vip-gems img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.25));
    transition: transform var(--transition);
}

.vip-gems img:hover { transform: translateY(-4px) scale(1.05); }

@media (min-width: 900px) {
    .vip-gems { grid-template-columns: repeat(4, auto); }
    .vip-gems img { width: 96px; height: 96px; }
}

/* ============================================
   SITEMAP PAGE - Clean vertical page index
   ============================================ */
.gold-rule {
    width: 72px;
    height: 2px;
    margin: 0 auto var(--space-3);
    border: none;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sitemap-list {
    list-style: none;
    margin: var(--space-3) 0 0;
    padding: 0;
}

.sitemap-list__item {
    margin: 0;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gold-border);
}

.sitemap-list__item:last-child { border-bottom: none; }

.sitemap-list__link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--gold);
    margin-bottom: var(--space-1);
}

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

.sitemap-list__desc {
    color: var(--muted-foreground);
    font-size: 16px;
    margin: 0;
    max-width: 68ch;
}

/* ============================================
   LIVE CASINO PAGE - Live badges & dealer meta
   ============================================ */
.game-card__badge--live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--emerald);
    color: var(--accent-foreground);
}

.game-card__badge--live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-foreground);
    box-shadow: 0 0 6px rgba(248, 243, 233, 0.8);
    animation: live-pulse 1.8s ease-in-out infinite;
}

.dealer-card__meta {
    display: block;
    padding: 0 12px 12px;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENTS PAGE - Payment logos & speed icons
   ============================================ */
.pay-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: var(--space-2);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.speed-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.speed-icons img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.25));
}

@media (min-width: 900px) {
    .speed-icons img { width: 88px; height: 88px; }
}

.step-icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto var(--space-2);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.25));
}

/* ============================================
   UTILITIES - Screen-reader text, misc
   ============================================ */
.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;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.mt-0 { margin-top: 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;
}
