/*
 * V.Vegas Casino - Design System
 * Dark Vegas identity: deep graphite, gold accents, neon highlights.
 * Single fixed dark theme (no theme switcher per brief).
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
    /* Surfaces - dark, warm graphite (not pure black) */
    --bg: #14100e;
    --bg-soft: #1c1613;
    --surface: #221a15;
    --surface-2: #2a211a;
    --line: #3a2d22;
    --line-soft: #2e241c;

    /* Text */
    --text: #f4ede1;
    --text-soft: #d8c9b4;
    --muted: #a89a86;

    /* Brand accents */
    --gold: #e9b84d;
    --gold-bright: #ffd978;
    --gold-deep: #b98a2e;
    --red: #e23a45;
    --red-deep: #b32630;
    --pink-neon: #ff4fa3;
    --blue-neon: #3fb8ff;
    --green: #4bc27e;

    /* Gradient accents */
    --grad-gold-red: linear-gradient(135deg, #ffd978 0%, #e9b84d 45%, #e23a45 100%);
    --grad-cta: linear-gradient(135deg, #ffd978 0%, #f0a63c 40%, #e23a45 100%);
    --grad-panel: linear-gradient(180deg, rgba(255,217,120,.08), rgba(226,58,69,.05));

    /* Action pairs (contrast-checked) */
    --cta-fg: #241503;
    --ghost-fg: #f2d49b;

    /* Typography */
    --font-display: "Manrope", "Inter", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Spacing scale */
    --space-2xs: .25rem;
    --space-xs: .5rem;
    --space-sm: .75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radii & shadows */
    --radius-sm: .5rem;
    --radius-md: .9rem;
    --radius-lg: 1.4rem;
    --shadow-gold: 0 10px 34px rgba(233, 184, 77, .22);
    --shadow-soft: 0 14px 44px rgba(0, 0, 0, .45);

    --header-h: 68px;
    --container: 1200px;
}

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

details {
    height: fit-content;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

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

section {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY & DOCUMENT
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.18;
    margin: 0 0 var(--space-sm);
    text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, calc(1.3rem + 2.8vw), 3.2rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.45rem, calc(1.1rem + 1.8vw), 2.25rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, calc(1rem + .8vw), 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p {
    margin: 0 0 var(--space-md);
    max-width: 68ch;
    color: var(--text-soft);
}

a {
    color: var(--gold);
    text-decoration-color: rgba(233, 184, 77, .55);
}

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

:focus-visible {
    outline: 3px solid var(--blue-neon);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: absolute;
    left: var(--space-md);
    top: -60px;
    z-index: 1100;
    background: var(--gold);
    color: var(--cta-fg);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top .2s ease;
}

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

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

@media (min-width: 768px) {
    .container { padding-inline: var(--space-xl); }
}

/* Standard content section rhythm */
.page-section {
    padding-block: var(--space-2xl);
    position: relative;
}

.page-section--tint {
    background: var(--bg-soft);
}

@media (min-width: 1024px) {
    .page-section { padding-block: var(--space-3xl); }
}

.section-heading {
    max-width: 860px;
    margin: 0 auto var(--space-xl);
    text-align: left;
}

.section-heading--center {
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 var(--space-xs);
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-intro {
    font-size: 1.06rem;
    color: var(--text-soft);
}

/* ============================================
   BUTTONS - gold-red Vegas CTA system
   .btn--primary: gradient gold→red, dark text
   .btn--ghost: gold outline for secondary actions
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn--primary {
    background: var(--grad-cta);
    color: var(--cta-fg);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    color: var(--cta-fg);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(233, 184, 77, .34);
}

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

.btn--ghost:hover {
    color: var(--cta-fg);
    background: var(--gold);
    border-color: var(--gold);
}

.btn--sm {
    min-height: 42px;
    padding: .45rem 1.1rem;
    font-size: .92rem;
}

.btn--lg {
    min-height: 56px;
    padding: var(--space-sm) var(--space-xl);
    font-size: 1.1rem;
}

/* ============================================
   HEADER - sticky bar, brand + nav + auth CTAs
   Mobile: burger left, brand centered, actions right
   ============================================ */

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

.site-header.is-scrolled {
    background: var(--bg);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-xs) var(--space-md);
    min-height: var(--header-h);
}

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

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--grad-cta);
    color: var(--cta-fg);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: var(--shadow-gold);
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-brand__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gold);
}

.site-brand__sub {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* Primary navigation - hidden drawer on mobile */
.primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--bg);
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md);
    display: none;
}

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

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft);
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
}

.primary-nav__list a:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: var(--surface-2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
    flex-shrink: 0;
}

/* Hide ghost "Login" on very narrow screens so header fits at 320px */
@media (max-width: 420px) {
    .header-actions .btn--ghost { display: none; }
}

@media (min-width: 768px) {
    .header-inner { padding-inline: var(--space-xl); }
}

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

    .primary-nav {
        position: static;
        display: block;
        overflow: visible;
        background: transparent;
        padding: 0;
        margin-left: var(--space-lg);
        margin-right: auto;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xs);
    }

    .primary-nav__list a {
        min-height: 44px;
        padding: var(--space-xs) var(--space-md);
        border: 0;
        background: transparent;
        border-radius: var(--radius-sm);
        font-size: .95rem;
        color: var(--text-soft);
    }

    .primary-nav__list a:hover {
        background: var(--surface);
        color: var(--gold-bright);
    }
}

/* ============================================
   HERO - split layout: copy left, integrated art right
   Art sits in transparent wrapper, no card frame
   ============================================ */

.hero {
    position: relative;
    background:
        radial-gradient(1100px 520px at 78% 12%, rgba(255, 217, 120, .16), transparent 60%),
        radial-gradient(760px 420px at 12% 90%, rgba(226, 58, 69, .14), transparent 62%),
        var(--bg);
    overflow: clip;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -8%;
    bottom: -7%;
    width: min(72vw, 920px);
    height: 30%;
    border: 12px solid rgba(124, 76, 43, .76);
    border-top-color: rgba(255, 217, 120, .42);
    border-radius: 46% 46% 8% 8% / 32% 32% 8% 8%;
    background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        #12382f;
    background-size: 34px 34px;
    transform: perspective(520px) rotateX(58deg);
    transform-origin: bottom;
    box-shadow: 0 -12px 42px rgba(0, 0, 0, .7);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__inner {
    display: grid;
    gap: var(--space-xl);
    padding-block: var(--space-2xl);
}

.hero__copy {
    max-width: 620px;
}

.hero__copy p.lead {
    font-size: 1.12rem;
    color: var(--text-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.hero__art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__art img {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, .55));
}

.hero__micro {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: .9rem;
    color: var(--muted);
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
        align-items: center;
        gap: var(--space-2xl);
        padding-block: var(--space-3xl);
    }
}

/* ============================================
   AGE BADGE / RESPONSIBLE NOTE - 18+ markers
   ============================================ */

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

.responsible-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.responsible-note p {
    margin: 0;
    font-size: .95rem;
}

/* ============================================
   TRUST BADGES ROW - license, SSL, DSGVO, 18+
   ============================================ */

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

.trust-badge {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
}

.trust-badge__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 9px;
    border-radius: var(--radius-sm);
    background: rgba(233, 184, 77, .12);
    color: var(--gold);
    flex-shrink: 0;
}

.trust-badge strong {
    display: block;
    font-family: var(--font-display);
    color: var(--text);
}

.trust-badge span:not(.trust-badge__icon) {
    display: block;
    font-size: .92rem;
    color: var(--muted);
}

.trust-badge a {
    font-size: .88rem;
    font-weight: 600;
}

/* ============================================
   CARDS - media cards (game categories) & feature cards
   ============================================ */

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

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

@media (min-width: 1024px) {
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    /* Five category cards: 3 + 2 with the last two centered */
    .card-grid--5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .card-grid--5 > * { grid-column: span 2; }
    .card-grid--5 > *:nth-child(4) { grid-column: 2 / span 2; }
    .card-grid--5 > *:nth-child(5) { grid-column: 4 / span 2; }
}

.media-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-width: 0;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 184, 77, .5);
    box-shadow: var(--shadow-soft);
}

.media-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--surface-2);
}

.media-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: rgba(20, 16, 14, .85);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}

.media-card__body {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.media-card__body h3 {
    margin-bottom: var(--space-xs);
}

.media-card__body p {
    font-size: .95rem;
    margin-bottom: var(--space-sm);
}

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

.feature-card__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 10px;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(233, 184, 77, .12);
    color: var(--gold);
}

.feature-card p {
    font-size: .95rem;
}

.feature-card--neon .feature-card__icon {
    background: rgba(255, 79, 163, .12);
    color: var(--pink-neon);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(233, 184, 77, .5);
    padding-bottom: 1px;
}

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

/* ============================================
   CTA SECTION - full-width gradient band
   ============================================ */

.cta-section {
    position: relative;
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(255, 217, 120, .18), transparent 65%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
    border-top: 1px solid var(--line-soft);
    padding-block: var(--space-2xl);
    text-align: center;
}

.cta-section__inner {
    max-width: 760px;
}

.cta-section p {
    margin-inline: auto;
}

.cta-steps {
    list-style: none;
    margin: var(--space-lg) auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 520px;
    counter-reset: ctastep;
}

.cta-steps li {
    counter-increment: ctastep;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-soft);
}

.cta-steps li::before {
    content: counter(ctastep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: var(--cta-fg);
    font-family: var(--font-display);
    font-weight: 800;
    flex-shrink: 0;
}

.cta-section__micro {
    margin-top: var(--space-md);
    font-size: .88rem;
    color: var(--muted);
}

@media (min-width: 768px) {
    .cta-steps { flex-direction: row; max-width: none; }
    .cta-steps li { flex: 1; }
}

/* ============================================
   SUMMARY BOX / CALLOUT - inline engagement blocks
   ============================================ */

.summary-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-block: var(--space-lg);
}

.summary-box__head {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

.summary-box__head svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.summary-box__head h2,
.summary-box__head h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text);
}

.callout {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    margin-block: var(--space-lg);
    background: var(--surface);
}

.callout__icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: rgba(233, 184, 77, .12);
    color: var(--gold);
}

.callout strong {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
}

.callout p {
    margin: 0;
    font-size: .95rem;
}

.callout--gold { border-left: 4px solid var(--gold); }
.callout--red { border-left: 4px solid var(--red); }
.callout--red .callout__icon { background: rgba(226, 58, 69, .14); color: var(--red); }
.callout--green { border-left: 4px solid var(--green); }
.callout--green .callout__icon { background: rgba(75, 194, 126, .14); color: var(--green); }

/* ============================================
   CHECK LIST - gold check bullets
   ============================================ */

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

.check-list li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: var(--space-xs);
    color: var(--text-soft);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28em;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: rgba(233, 184, 77, .15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9b84d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E");
    background-size: .72rem;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   STAT HIGHLIGHT - big gold numbers
   ============================================ */

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

.stat-highlight {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--grad-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.stat-highlight__number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, calc(1.4rem + 2vw), 2.8rem);
    background: var(--grad-gold-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stat-highlight__label {
    display: block;
    margin-top: var(--space-2xs);
    font-weight: 700;
    color: var(--text);
}

.stat-highlight small {
    display: block;
    margin-top: var(--space-2xs);
    color: var(--muted);
    font-size: .85rem;
}

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

.pull-quote {
    margin: var(--space-xl) auto;
    max-width: 720px;
    text-align: center;
    padding: 0 var(--space-md);
}

.pull-quote blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, calc(1.05rem + 1vw), 1.7rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}

.pull-quote blockquote::before {
    content: "“";
    display: block;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.pull-quote figcaption {
    margin-top: var(--space-sm);
    color: var(--muted);
    font-size: .95rem;
}

/* ============================================
   FAQ - native details/summary accordion
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: start;
}

.faq-item {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    overflow: clip;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 56px;
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}

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

.faq-item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--cta-fg);
}

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-soft);
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   COMPARISON TABLE - scrollable, highlighted column
   ============================================ */

.table-wrapper {
    margin-block: var(--space-lg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

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

.comparison-table caption {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--line-soft);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text-soft);
}

.comparison-table thead th {
    font-family: var(--font-display);
    color: var(--text);
    background: var(--surface-2);
}

.comparison-table tbody th {
    color: var(--text);
    font-weight: 600;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table .is-recommended {
    background: rgba(233, 184, 77, .1);
}

.comparison-table thead th.is-recommended {
    background: rgba(233, 184, 77, .22);
    color: var(--gold-bright);
}

/* ============================================
   STEPS LIST - numbered registration guide
   ============================================ */

.steps-list {
    list-style: none;
    margin: var(--space-lg) 0;
    padding: 0;
    display: grid;
    gap: var(--space-md);
}

.steps-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
}

.steps-list__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: var(--cta-fg);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.steps-list h3 {
    margin-bottom: var(--space-2xs);
    font-size: 1.05rem;
}

.steps-list p {
    margin: 0;
    font-size: .95rem;
}

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

/* ============================================
   TIER CARD - VIP / cashback levels
   ============================================ */

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

.tier-card--featured {
    border-color: var(--gold);
    background: var(--grad-panel);
    box-shadow: var(--shadow-gold);
}

.tier-card__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.tier-card__top h3 { margin: 0; }

.tier-card__top span {
    font-size: .85rem;
    color: var(--muted);
    white-space: nowrap;
}

.tier-card__cashback {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold-bright);
    margin-bottom: var(--space-sm);
}

/* ============================================
   SOCIAL PROOF CARD - example win / quote cards
   ============================================ */

.proof-card {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.proof-card blockquote {
    margin: 0 0 var(--space-md);
    font-size: 1.02rem;
    color: var(--text);
}

.proof-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--muted);
    font-size: .9rem;
}

.proof-card figcaption strong {
    color: var(--gold);
    font-family: var(--font-display);
}

/* ============================================
   JACKPOT FEED - marquee-style board (static rows,
   no infinite DOM-wide animation to avoid overflow)
   ============================================ */

.jackpot-board {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(255, 79, 163, .12), transparent 70%),
        var(--surface);
    overflow: clip;
}

.jackpot-board__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--line-soft);
}

.jackpot-board__row:last-child { border-bottom: 0; }

.jackpot-board__game {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}

.jackpot-board__type {
    font-size: .82rem;
    color: var(--muted);
}

.jackpot-board__amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--gold-bright);
    white-space: nowrap;
}

.jackpot-board__note {
    padding: var(--space-sm) var(--space-lg);
    font-size: .82rem;
    color: var(--muted);
    border-top: 1px solid var(--line-soft);
}

/* ============================================
   FOOTER - link columns, payment chips, license, 18+
   ============================================ */

.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding-top: var(--space-2xl);
}

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

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

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

.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gold);
}

.footer-note {
    margin-top: var(--space-sm);
    font-size: .92rem;
}

.footer-age {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: .88rem;
    color: var(--muted);
}

.footer-head {
    font-size: .95rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
}

.pay-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 2px 12px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-soft);
    white-space: nowrap;
}

.footer-facts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-facts li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: var(--space-xs);
    font-size: .92rem;
    color: var(--text-soft);
}

.footer-facts li::before {
    content: "•";
    position: absolute;
    left: .2rem;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-lg);
    justify-content: space-between;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-top: 1px solid var(--line-soft);
}

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

/* ============================================
   SPLIT BLOCK - section-local media + content layout
   ============================================ */

.split-block {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.home-game-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .home-game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .home-game-grid > * {
        grid-column: auto;
    }
}

.split-block__art img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
}

.split-block__art--free img {
    border-radius: 0;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .5));
}

@media (min-width: 768px) {
    .split-block--media {
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        gap: var(--space-xl);
    }
}

/* ============================================
   BONUS PANEL - headline offer with conditions
   ============================================ */

.bonus-panel {
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    background: var(--grad-panel);
    box-shadow: var(--shadow-gold);
    padding: var(--space-lg);
}

.bonus-panel__headline {
    margin: 0 0 var(--space-md);
    max-width: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, calc(1.1rem + 2vw), 2.1rem);
    line-height: 1.15;
    color: var(--gold-bright);
}

.jackpot-banner {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

/* ============================================
   ICON SYMBOL - inline SVG base
   ============================================ */

.icon-symbol {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   SCROLL REVEAL - enhancement class added by JS only.
   Without JS everything stays visible. One-way reveal.
   ============================================ */

.js-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .js-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn,
    .media-card,
    .faq-item summary::after {
        transition: none;
    }
}
