/* ============================================
   V.VEGAS CASINO - DESIGN SYSTEM
   Single fixed dark theme (no theme switcher).
   Palette: deep wine/black surfaces, gold primary,
   neon red/magenta and cyan accents.
   ============================================ */

:root {
    /* Surfaces */
    --background: #0b0509;
    --background-alt: #120a11;
    --surface: #17101a;
    --surface-2: #1f1622;
    --card: #191120;
    --border: #33253a;
    --border-strong: #4a3550;

    /* Text */
    --foreground: #f4ecf7;
    --muted-foreground: #bcaec6;
    --heading: #ffffff;

    /* Brand accents */
    --gold: #f0cd7f;
    --gold-strong: #e6b755;
    --gold-deep: #a9761f;
    --gold-foreground: #241503;
    --neon-red: #ff2f5e;
    --neon-magenta: #ff4fa3;
    --neon-cyan: #45e0ff;

    /* Action tokens */
    --primary: #f0cd7f;
    --primary-foreground: #241503;
    --secondary: #2a1d31;
    --secondary-foreground: #f4ecf7;
    --accent: #ff2f5e;
    --accent-foreground: #1a0308;
    --destructive: #ff6b6b;
    --destructive-foreground: #1a0303;

    /* Effects */
    --glow-gold: 0 0 24px rgba(240, 205, 127, 0.35);
    --glow-red: 0 0 22px rgba(255, 47, 94, 0.35);
    --glow-cyan: 0 0 20px rgba(69, 224, 255, 0.35);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.55);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Layout */
    --container: 1240px;
    --header-h: 64px;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: clamp(2.5rem, calc(3vw + 1.5rem), 4.5rem);

    /* Type */
    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ============================================
   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
   Display font (Oswald) for headings/numbers,
   Inter for body copy.
   ============================================ */

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: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(60rem 30rem at 80% -10%, rgba(255, 47, 94, 0.12), transparent 65%),
        radial-gradient(48rem 26rem at 0% 12%, rgba(240, 205, 127, 0.08), transparent 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 var(--space-sm);
    text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, calc(4.2vw + 0.8rem), 3.4rem); }
h2 { font-size: clamp(1.45rem, calc(2.2vw + 0.85rem), 2.3rem); }
h3 { font-size: clamp(1.15rem, calc(0.9vw + 0.85rem), 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 var(--space-md); }

a {
    color: var(--gold);
    text-underline-offset: 0.15em;
}

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

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

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

.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: -9999px;
    top: 0;
    z-index: 1200;
    background: var(--gold);
    color: var(--gold-foreground);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
}

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

/* ============================================
   LAYOUT PRIMITIVES
   .container - centred max-width wrapper
   .section - vertical rhythm band
   .prose - readable measure for body copy
   ============================================ */

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

.section {
    padding-block: var(--space-xl);
}

.section--tight { padding-block: clamp(1.75rem, calc(2vw + 1rem), 2.75rem); }

.section--alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border-block: 1px solid var(--border);
}

.prose { max-width: 72ch; }

.prose p, .prose li { color: var(--foreground); }

.divider {
    border: 0;
    height: 1px;
    margin: var(--space-lg) 0;
    background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--gold-deep) 50%, var(--border-strong) 85%, transparent);
    position: relative;
}

.section-head {
    margin-bottom: var(--space-lg);
}

.section-head--center { text-align: center; }
.section-head--center .section-head__lead { margin-inline: auto; }

.section-head__title { margin-bottom: var(--space-sm); }

.section-head__lead {
    color: var(--muted-foreground);
    max-width: 62ch;
    margin-bottom: 0;
}

/* ============================================
   BUTTONS
   .btn--gold  - primary glowing gold CTA
   .btn--ghost - outlined header/login action
   .btn--outline - secondary inline action
   .btn--neon  - red neon emphasis
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn--gold {
    background: linear-gradient(180deg, #f7dc9b, var(--gold-strong));
    color: var(--primary-foreground);
    box-shadow: var(--glow-gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(240, 205, 127, 0.6);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(240, 205, 127, 0.12);
    color: var(--gold);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-strong);
    color: var(--foreground);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--neon {
    background: linear-gradient(180deg, #ff4d75, #d5133e);
    color: #ffffff;
    box-shadow: var(--glow-red);
}

.btn--neon:hover,
.btn--neon:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--wide { width: 100%; max-width: 22rem; }

/* ============================================
   HEADER + PRIMARY NAVIGATION
   Mobile: fixed drawer below header (z 999)
   Desktop: inline nav + Anmelden/Registrieren
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--heading);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.05rem, calc(2.4vw + 0.4rem), 1.5rem);
    letter-spacing: 0.01em;
    margin-right: auto;
    white-space: nowrap;
}

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

.site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold), var(--gold-deep));
    color: var(--gold-foreground);
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: var(--glow-gold);
}

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

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.18s 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); }

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    padding: var(--space-md);
}

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

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.primary-nav__list a:hover,
.primary-nav__list a:focus-visible {
    color: var(--gold);
    background: rgba(240, 205, 127, 0.08);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    :root { --header-h: 76px; }

    .nav-toggle { display: none; }

    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
        margin: 0;
    }

    .primary-nav__list a {
        border-bottom: 2px solid transparent;
        border-radius: 0;
        font-size: 0.98rem;
        padding: 0.35rem 0.6rem;
        min-height: 44px;
    }

    .primary-nav__list a:hover,
    .primary-nav__list a:focus-visible {
        background: transparent;
        border-bottom-color: var(--gold);
    }

    .primary-nav__actions {
        flex-direction: row;
        gap: 0.6rem;
    }

    .primary-nav__actions .btn {
        min-height: 44px;
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .primary-nav__list a { font-size: 1.02rem; padding: 0.35rem 0.9rem; }
}

/* ============================================
   HERO - marquee-framed Vegas banner
   Gold hairline frame, model photo full-bleed,
   headline + copy over left gradient scrim.
   ============================================ */

.hero {
    padding: var(--space-md) 0 var(--space-lg);
}

.hero__frame {
    position: relative;
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius-lg);
    padding: 6px;
    background:
        linear-gradient(180deg, rgba(240,205,127,0.16), rgba(240,205,127,0.04));
    box-shadow: 0 0 42px rgba(0, 0, 0, 0.7);
}

.hero__stage {
    position: relative;
    border-radius: calc(var(--radius-lg) - 6px);
    overflow: hidden;
    isolation: isolate;
    min-height: 26rem;
    display: flex;
    align-items: flex-end;
}

.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 30%;
    z-index: -1;
}

.hero__stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(11,5,9,0.15) 0%, rgba(11,5,9,0.55) 55%, rgba(11,5,9,0.9) 100%),
        linear-gradient(95deg, rgba(58,7,22,0.92) 0%, rgba(58,7,22,0.55) 42%, rgba(11,5,9,0) 78%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(1.25rem, 4vw, 2.75rem);
    max-width: 44rem;
}

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    margin-bottom: 0.6rem;
}

.hero__title {
    color: var(--gold);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
    margin-bottom: var(--space-sm);
}

.hero__text {
    color: #f0e6f2;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
    max-width: 40ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.hero__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0;
    margin: 0 0 var(--space-md);
    font-size: 0.92rem;
    color: #f3e9f5;
}

.hero__meta li::before {
    content: "◆";
    color: var(--gold);
    margin-right: 0.4rem;
}

/* Compact hero variant for subpages */
.hero--compact .hero__stage { min-height: 20rem; }

@media (min-width: 768px) {
    .hero__stage { min-height: 32rem; }
}

@media (min-width: 1024px) {
    .hero__stage { min-height: 38rem; align-items: center; }
    .hero__content { padding: 3rem 3.5rem; }
    .hero__title { font-size: clamp(2.4rem, calc(2.4vw + 1.6rem), 3.5rem); }
    .hero--compact .hero__stage { min-height: 24rem; }
}

/* ============================================
   USP STRIP - big gold figures, hairline dividers
   ============================================ */

.usp-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    border-block: 1px solid var(--border);
    padding-block: var(--space-lg);
}

.usp-item {
    text-align: center;
    padding-inline: var(--space-xs);
}

.usp-item__figure {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, calc(3.2vw + 1rem), 3rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
}

.usp-item__label {
    display: block;
    color: var(--foreground);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .usp-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .usp-item + .usp-item { border-left: 1px solid var(--border); }
}

/* ============================================
   GRIDS - generic responsive content grids
   ============================================ */

.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: var(--space-md);
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
}

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

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-xl);
        align-items: start;
    }
}

/* ============================================
   CARDS
   .panel      - base dark surface container
   .media-card - framed photo + copy
   .game-tile  - neon-bordered category tile
   .promo-card - bonus/promotion block
   ============================================ */

.panel {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}

.panel--accent {
    border-color: var(--gold-deep);
    box-shadow: var(--shadow-card), inset 0 0 40px rgba(240, 205, 127, 0.05);
}

.media-card {
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.media-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.media-card__body { padding: var(--space-md); }
.media-card__title { margin-bottom: 0.4rem; }
.media-card__text { color: var(--muted-foreground); margin: 0; }

.game-tile {
    min-width: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(160deg, rgba(255,47,94,0.75), rgba(255,47,94,0.15));
    box-shadow: var(--glow-red);
    transition: transform 0.18s ease;
}

.game-tile--cyan {
    background: linear-gradient(160deg, rgba(69,224,255,0.75), rgba(69,224,255,0.15));
    box-shadow: var(--glow-cyan);
}

.game-tile--gold {
    background: linear-gradient(160deg, rgba(240,205,127,0.8), rgba(240,205,127,0.15));
    box-shadow: var(--glow-gold);
}

.game-tile:hover { transform: translateY(-3px); }

.game-tile__link {
    display: block;
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    background: var(--surface);
    text-decoration: none;
    color: var(--foreground);
}

.game-tile__img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.game-tile__body {
    display: block;
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.game-tile__title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--heading);
    margin-bottom: 0.25rem;
}

.game-tile__text {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
}

.promo-card {
    min-width: 0;
    background: linear-gradient(180deg, var(--surface-2), var(--card));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.promo-card__kicker {
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--neon-magenta);
}

.promo-card__title { margin: 0; }

.promo-card__figure {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, calc(2vw + 1rem), 2.2rem);
    color: var(--gold);
    margin: 0.2rem 0;
    line-height: 1.1;
}

.promo-card__text { color: var(--muted-foreground); margin: 0; }

.promo-card__list {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
    color: var(--foreground);
    font-size: 0.95rem;
}

.promo-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================
   TABLES - comparison / conditions
   thead in gold, highlighted recommended row
   ============================================ */

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 34rem;
    font-size: 0.95rem;
}

.data-table thead th {
    background: linear-gradient(180deg, #f7dc9b, var(--gold-strong));
    color: var(--gold-foreground);
    font-family: var(--font-display);
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.data-table th[scope="row"] {
    color: var(--heading);
    font-weight: 600;
    text-align: left;
}

.data-table td,
.data-table th[scope="row"] {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    vertical-align: top;
}

.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.025); }

.data-table tbody tr.is-highlighted {
    background: rgba(240, 205, 127, 0.12);
    box-shadow: inset 0 0 0 1px var(--gold-deep);
}

/* ============================================
   ENGAGEMENT PATTERNS
   .summary-box    - TL;DR key takeaways
   .callout        - tip / warning / note
   .stat-highlight - large figure + label
   .pull-quote     - oversized quote
   .faq-item       - native details accordion
   ============================================ */

.summary-box {
    background: linear-gradient(180deg, rgba(240,205,127,0.12), rgba(240,205,127,0.03));
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 0 0.5rem;
    letter-spacing: 0.03em;
}

.summary-box__list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.35rem;
}

.callout {
    border-left: 4px solid var(--gold);
    background: var(--surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.callout--warning { border-left-color: var(--neon-red); }
.callout--tip { border-left-color: var(--neon-cyan); }

.callout__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--heading);
    margin: 0 0 0.35rem;
}

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

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 0;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, calc(2.6vw + 1rem), 2.8rem);
    color: var(--gold);
    line-height: 1.05;
}

.stat-highlight__label { color: var(--heading); font-weight: 600; }
.stat-highlight__note { color: var(--muted-foreground); font-size: 0.88rem; }

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 0.5rem);
    border-left: 3px solid var(--neon-magenta);
    background: rgba(255, 79, 163, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, calc(1.2vw + 0.9rem), 1.5rem);
    line-height: 1.35;
    color: var(--heading);
    margin: 0 0 0.5rem;
}

.pull-quote cite {
    color: var(--muted-foreground);
    font-style: normal;
    font-size: 0.9rem;
}

.faq-group {
    display: grid;
    gap: var(--space-sm);
    align-items: start;
}

.faq-item {
    align-self: start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
    padding: 0.85rem var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--heading);
    list-style: none;
}

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

.faq-item__q::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__q::after {
    content: "-";
    transform: rotate(180deg);
}

.faq-item[open] .faq-item__q { border-bottom: 1px solid var(--border); }

.faq-item__a {
    padding: var(--space-md);
    color: var(--foreground);
    animation: faq-open 0.22s ease;
}

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

@keyframes faq-open {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
}

/* ============================================
   CRO PATTERNS
   .cta-band     - full-width conversion band
   .trust-row    - licence / security signals
   .provider-wall- studio logo wall
   .payment-row  - payment method chips
   .vip-ladder   - loyalty level teaser
   .step-list    - numbered process
   ============================================ */

.cta-band {
    margin-block: var(--space-lg);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(60% 120% at 20% 0%, rgba(255,47,94,0.55), transparent 70%),
        linear-gradient(120deg, #8d0f2c 0%, #5c0a20 45%, #2a0713 100%);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-card);
}

.cta-band__inner {
    padding: clamp(1.5rem, 4vw, 3rem) var(--space-md);
    text-align: center;
    display: grid;
    justify-items: center;
    gap: var(--space-sm);
}

.cta-band__title { margin: 0; color: #fff; }
.cta-band__text { color: #f7e9ee; max-width: 56ch; margin: 0; }
.cta-band__note { color: #f3d3dc; font-size: 0.85rem; margin: 0; }

.trust-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-sm);
}

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

.trust-row__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--gold-deep);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.trust-row__body { display: block; min-width: 0; }
.trust-row__title { display: block; font-weight: 700; color: var(--heading); }
.trust-row__text { display: block; color: var(--muted-foreground); font-size: 0.93rem; }

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

.provider-wall {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

.provider-wall__item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 62px;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

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

.payment-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-chip {
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    color: var(--foreground);
    font-size: 0.85rem;
    white-space: nowrap;
}

.vip-ladder {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.vip-ladder__step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, rgba(240,205,127,0.16), rgba(240,205,127,0.03));
    border: 1px solid var(--border);
}

.vip-ladder__chip {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    min-width: 5.4rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-pill);
    background: #120a11;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.vip-ladder__perk { color: var(--foreground); font-size: 0.95rem; }

.step-list__title { margin-bottom: var(--space-sm); }

.step-list__items {
    list-style: none;
    counter-reset: steps;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-sm);
}

.step-list__item {
    counter-increment: steps;
    position: relative;
    padding: 0.75rem 1rem 0.75rem 3.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-list__item::before {
    content: counter(steps);
    position: absolute;
    left: 0.9rem;
    top: 0.85rem;
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f7dc9b, var(--gold-strong));
    color: var(--gold-foreground);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.step-list__label { display: block; font-weight: 700; color: var(--heading); }
.step-list__text { display: block; color: var(--muted-foreground); font-size: 0.95rem; }

.badge-18 {
    display: inline-grid;
    place-items: center;
    min-width: 2.1rem;
    height: 2.1rem;
    margin-right: 0.4rem;
    border-radius: 50%;
    border: 2px solid var(--neon-red);
    color: #ff7d99;
    font-family: var(--font-display);
    font-size: 0.8rem;
    vertical-align: middle;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs { padding-block: var(--space-sm); }

.breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
    color: var(--muted-foreground);
}

.breadcrumbs__list li + li::before {
    content: "/";
    margin-right: 0.4rem;
    color: var(--border-strong);
}

/* ============================================
   SITEMAP LIST
   ============================================ */

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

.sitemap-entry {
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sitemap-entry__link {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.sitemap-entry__text {
    margin: 0.4rem 0 0;
    color: var(--muted-foreground);
}

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

.site-footer {
    margin-top: var(--space-xl);
    background: var(--background-alt);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    display: grid;
    gap: var(--space-lg);
}

.site-footer__col { min-width: 0; }

.site-brand--footer { margin-right: 0; margin-bottom: var(--space-sm); }

.site-footer__about {
    color: var(--muted-foreground);
    font-size: 0.93rem;
    max-width: 44ch;
}

.site-footer__title {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--foreground);
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible { color: var(--gold); }

.site-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md);
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

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

@media (min-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: var(--space-xl);
    }
}

/* ============================================
   SCROLL REVEAL - progressive enhancement only
   .js-reveal is added by script.js; content is
   fully visible without JavaScript.
   ============================================ */

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

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

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

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

    .faq-item__a { animation: none; }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}
