/*
 * ALAWIN CASINO - DESIGN SYSTEM
 * Single fixed dark theme (no theme switcher per brief).
 * Palette: deep night purple base, gold headlines, purple/turquoise neon accents.
 * Mobile-first: base styles target 320px+, enhanced at 768px / 1024px / 1280px.
 */

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

:root {
    /* Surfaces */
    --background: #120a28;
    --background-deep: #0c0618;
    --surface: #1c1138;
    --surface-raised: #251747;
    --card: #1a0f33;

    /* Text */
    --foreground: #f4eeff;
    --foreground-muted: #c8bce6;
    --muted: #372a5c;
    --muted-foreground: #b3a6d8;

    /* Brand accents */
    --gold: #f5c866;
    --gold-strong: #ffd97a;
    --gold-deep: #b8862e;
    --purple: #9a49ee;
    --purple-deep: #7c3aed;
    --turquoise: #2dd4c8;
    --turquoise-deep: #0f9d93;

    /* Action tokens (foreground on background >= 4.5:1) */
    --primary: linear-gradient(135deg, #ffd97a 0%, #f5c866 55%, #9a49ee 130%);
    --primary-solid: #f5c866;
    --primary-foreground: #d96900;
    --secondary: #2dd4c8;
    --secondary-foreground: #032824;
    --accent: #9a49ee;
    --accent-foreground: #ffffff;
    --destructive: #e12b31;
    --destructive-foreground: #ffffff;

    /* Lines & glows */
    --border: rgba(200, 168, 255, 0.22);
    --border-gold: rgba(245, 200, 102, 0.45);
    --glow-gold: 0 0 22px rgba(245, 200, 102, 0.35);
    --glow-purple: 0 0 26px rgba(165, 94, 240, 0.45);
    --glow-turquoise: 0 0 22px rgba(45, 212, 200, 0.35);

    /* Typography */
    --font-display: "Fredoka", "Outfit", sans-serif;
    --font-body: "Outfit", "Segoe UI", sans-serif;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-h3: clamp(1.2rem, calc(1.4vw + 1rem), 1.5rem);
    --fs-h2: clamp(1.55rem, calc(2.2vw + 1rem), 2.4rem);
    --fs-h1: clamp(1.9rem, calc(3.4vw + 1.2rem), 3.6rem);

    /* Spacing & shape */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-xxl: 5.5rem;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --container: 1160px;
    --header-height: 72px;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--foreground);
    background-color: var(--background-deep);
    background-image:
        radial-gradient(58rem 34rem at 85% -6%, rgba(124, 58, 237, 0.34), transparent 62%),
        radial-gradient(46rem 30rem at -12% 12%, rgba(45, 212, 200, 0.14), transparent 58%),
        radial-gradient(60rem 42rem at 50% 118%, rgba(245, 200, 102, 0.10), transparent 60%);
    background-attachment: fixed;
}

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

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); color: var(--foreground); }

p {
    margin: 0 0 var(--space-md);
    max-width: 72ch;
}

a {
    color: var(--turquoise);
    text-decoration-color: rgba(45, 212, 200, 0.55);
}

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

ul, ol {
    padding-left: 1.35rem;
    margin: 0 0 var(--space-md);
}

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

strong { color: var(--foreground); font-weight: 600; }

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    z-index: 1200;
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-solid);
    color: var(--primary-foreground);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
}

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

:focus-visible {
    outline: 3px solid var(--turquoise);
    outline-offset: 2px;
    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;
}

/* ============================================
   BUTTONS
   .btn--primary  gold→purple gradient pill (main CTA)
   .btn--ghost    outlined pill (Login)
   .btn--turquoise turquoise solid alternative
   ============================================ */

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

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--glow-gold);
}

.btn--primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(245, 200, 102, 0.55);
}

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

.btn--ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.btn--turquoise {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--glow-turquoise);
}

.btn--turquoise:hover {
    color: var(--secondary-foreground);
    box-shadow: 0 0 30px rgba(45, 212, 200, 0.5);
}

.btn--lg {
    min-height: 56px;
    padding: 0.9rem 2.4rem;
    font-size: 1.1rem;
}

/* ============================================
   HEADER & MOBILE MENU
   .site-header     sticky bar, z-index 1000
   .menu-toggle     burger, z-index 1001 (desktop hidden)
   .primary-nav     drawer on mobile, inline on desktop
   ============================================ */

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

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

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

.site-brand__lamp {
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(245, 200, 102, 0.55));
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.site-brand__sub {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    color: var(--foreground-muted);
}

/* --- Auth buttons in header (desktop + always-visible compact row) --- */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
}

.site-header__login,
.site-header__register {
    display: none;
}

/* --- Primary nav: hidden drawer on mobile --- */

.primary-nav {
    display: none;
}

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

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile drawer (open state) --- */

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

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

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
}

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

.primary-nav__auth {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

/* ============================================
   HERO
   .hero          full-width band with ambient neon scenery
   .hero__art     transparent foreground artwork (genie/model)
   ============================================ */

.hero {
    position: relative;
    overflow: clip;
    padding-block: var(--space-xl);
    background:
        radial-gradient(40rem 24rem at 80% 20%, rgba(124, 58, 237, 0.45), transparent 65%),
        radial-gradient(30rem 20rem at 12% 78%, rgba(45, 212, 200, 0.16), transparent 60%),
        linear-gradient(180deg, #1a0d3a 0%, var(--background-deep) 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.hero::before {
    width: 150vw;
    height: 34vw;
    min-width: 900px;
    min-height: 220px;
    left: -25vw;
    top: 58%;
    border: 2px solid rgba(165, 94, 240, 0.5);
    filter: blur(1px);
    transform: rotate(-8deg);
    box-shadow: 0 0 34px rgba(165, 94, 240, 0.55), inset 0 0 34px rgba(165, 94, 240, 0.3);
}

.hero::after {
    width: 160vw;
    height: 36vw;
    min-width: 1000px;
    min-height: 240px;
    right: -30vw;
    top: 68%;
    border: 2px solid rgba(45, 212, 200, 0.45);
    transform: rotate(7deg);
    box-shadow: 0 0 34px rgba(45, 212, 200, 0.5), inset 0 0 30px rgba(45, 212, 200, 0.25);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.hero__eyebrow {
    display: inline-block;
    margin: 0 0 var(--space-sm);
    padding: 0.3rem 0.9rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245, 200, 102, 0.08);
}

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

.hero__title .hero__title-accent {
    display: block;
    color: var(--foreground);
}

.hero__lead {
    font-size: 1.08rem;
    color: var(--foreground-muted);
}

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

.hero__microcopy {
    width: 100%;
    margin: 0;
    font-size: var(--fs-small);
    color: var(--muted-foreground);
}

.hero__art {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero__art img {
    width: min(100%, 460px);
    filter: drop-shadow(0 18px 40px rgba(12, 6, 24, 0.8)) drop-shadow(0 0 26px rgba(165, 94, 240, 0.4));
}

/* ============================================
   CARDS
   .card          base surface container
   .feature-card  image/icon card for highlights grids
   ============================================ */

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

.card--featured {
    border-color: var(--border-gold);
    box-shadow: var(--glow-gold);
}

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

.feature-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--glow-purple);
}

.feature-card__media {
    margin: 0;
    aspect-ratio: 8 / 5;
    background: var(--surface);
}

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

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: var(--space-md) var(--space-md) 0;
    border-radius: var(--radius-md);
    font-size: 1.7rem;
    background: linear-gradient(135deg, rgba(245, 200, 102, 0.16), rgba(165, 94, 240, 0.2));
    border: 1px solid var(--border-gold);
}

.feature-card__body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.feature-card__text {
    font-size: 0.95rem;
    color: var(--foreground-muted);
    flex-grow: 1;
}

.feature-card__link {
    align-self: flex-start;
    font-weight: 600;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.feature-card__link:hover {
    color: var(--turquoise);
}

/* ============================================
   ENGAGEMENT PATTERNS
   .tldr-box   key takeaways summary
   .callout    inline tip/warning/note
   .stat-block prominent figure + label
   .pull-quote oversized quotation
   .faq-item   native details/summary accordion
   ============================================ */

.tldr-box {
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(245, 200, 102, 0.10), rgba(165, 94, 240, 0.10));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
}

.tldr-box__title {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
}

.tldr-box__list {
    margin: 0;
    list-style: none;
    padding: 0;
}

.tldr-box__list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--foreground-muted);
}

.tldr-box__list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--turquoise);
}

.callout {
    padding: var(--space-md);
    background: var(--surface);
    border-left: 4px solid var(--turquoise);
    border-radius: var(--radius-sm);
}

.callout--warning { border-left-color: var(--gold); }
.callout--danger { border-left-color: var(--destructive); }

.callout__title {
    margin: 0 0 var(--space-xs);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.stat-block {
    min-width: 0;
    padding: var(--space-md);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, calc(2vw + 1.2rem), 2.6rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(245, 200, 102, 0.4);
}

.stat-block__label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}

.stat-block__note {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--fs-small);
    color: var(--muted-foreground);
}

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--purple);
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--foreground);
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

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

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

.faq-item__chevron {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

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

.faq-item__answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-item__answer p {
    margin: 0;
    color: var(--foreground-muted);
}

/* ============================================
   PROS / CONS PANEL
   ============================================ */

.pros-cons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.pros-cons__heading {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold);
}

.pros-cons__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pros-cons__list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--foreground-muted);
}

.pros-cons__col--pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--turquoise);
}

.pros-cons__col--cons li::before {
    content: "✕";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================
   CRO PATTERNS
   .cta-band       closing conversion section
   .trust-row      horizontal badge row
   .compare-table  styled table, highlighted column
   .tier-card      VIP ladder step
   ============================================ */

.cta-band {
    position: relative;
    overflow: clip;
    padding-block: var(--space-xl);
    background:
        radial-gradient(36rem 18rem at 50% 0%, rgba(165, 94, 240, 0.35), transparent 70%),
        linear-gradient(180deg, var(--surface) 0%, var(--background-deep) 100%);
    border-block: 1px solid var(--border-gold);
    text-align: center;
}

.cta-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-band__heading {
    margin-bottom: var(--space-sm);
}

.cta-band__text {
    max-width: 58ch;
    margin-inline: auto;
    color: var(--foreground-muted);
}

.cta-band__note {
    margin: var(--space-sm) 0 0;
    font-size: var(--fs-small);
    color: var(--muted-foreground);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-row > * {
    margin: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.45rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--foreground-muted);
}

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

.compare-table caption {
    caption-side: top;
    padding-bottom: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    text-align: left;
    color: var(--gold);
}

.compare-table th,
.compare-table td {
    padding: 0.75rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--foreground-muted);
}

.compare-table thead th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--foreground);
    background: var(--surface);
}

.compare-table .is-recommended {
    background: rgba(245, 200, 102, 0.10);
    color: var(--gold-strong);
}

.compare-table thead .is-recommended {
    color: var(--gold);
    border-top: 2px solid var(--gold);
}

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

.tier-card {
    min-width: 0;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.tier-card__level {
    display: inline-block;
    margin: 0 0 var(--space-xs);
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(165, 94, 240, 0.18);
    border: 1px solid var(--purple);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--accent-foreground);
}

.tier-card__name {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.tier-card__perks {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    font-size: 0.92rem;
    color: var(--foreground-muted);
}

.tier-card__perks li {
    position: relative;
    padding-left: 1.4rem;
}

.tier-card__perks li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================
   MEDIA / FIGURES
   .figure-frame framed editorial image
   ============================================ */

.figure-frame {
    margin: var(--space-lg) 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--glow-purple);
}

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

.figure-frame__caption {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-small);
    color: var(--muted-foreground);
    background: var(--surface-raised);
}

/* ============================================
   HOMEPAGE EXTRAS
   .bonus-chips  welcome package key figures
   .steps-list   numbered crypto process steps
   ============================================ */

.bonus-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    margin: 0 0 var(--space-lg);
}

.bonus-chip {
    min-width: 0;
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 200, 102, 0.10), rgba(165, 94, 240, 0.14));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
}

.bonus-chip__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 14px rgba(245, 200, 102, 0.4);
}

.bonus-chip__label {
    display: block;
    font-size: var(--fs-small);
    color: var(--foreground-muted);
}

.steps-list {
    counter-reset: steps;
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
}

.steps-list li {
    position: relative;
    padding: var(--space-sm) var(--space-sm) var(--space-sm) 3.4rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    color: var(--foreground-muted);
}

.steps-list li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #1a0f33;
    font-family: var(--font-display);
    font-weight: 700;
}

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

/* ============================================
   SITEMAP PAGE - ORDERED DIRECTORY
   ============================================ */

.sitemap-list {
    counter-reset: sitemap;
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.sitemap-item {
    counter-increment: sitemap;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 3.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sitemap-item:hover {
    border-color: var(--border-gold);
    box-shadow: var(--glow-purple);
}

.sitemap-item::before {
    counter-increment: sitemap;
    content: counter(sitemap);
    position: absolute;
    left: var(--space-sm);
    top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    color: #1a0f33;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.sitemap-item h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1.15rem;
}

.sitemap-item h3 a {
    color: var(--gold);
    text-decoration: none;
}

.sitemap-item h3 a:hover {
    color: var(--turquoise);
    text-decoration: underline;
}

.sitemap-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--foreground-muted);
    max-width: none;
}

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

/* ============================================
   BONUS PAGE - DEPOSIT STAGES & WAGERING EXAMPLES
   ============================================ */

.deposit-stages {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.deposit-stage {
    min-width: 0;
    padding: var(--space-md);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.deposit-stage:hover {
    border-color: var(--border-gold);
    box-shadow: var(--glow-purple);
}

.deposit-stage__label {
    margin: 0 0 var(--space-xs);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.deposit-stage__percent {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 1rem), 2.8rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 16px rgba(245, 200, 102, 0.4);
    line-height: 1.1;
}

.deposit-stage__max {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--turquoise);
}

.deposit-stage__details {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    color: var(--foreground-muted);
    text-align: left;
}

.deposit-stage__details li {
    position: relative;
    padding-left: 1.4rem;
}

.deposit-stage__details li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.wagering-examples {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.wagering-example {
    min-width: 0;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(245, 200, 102, 0.08), rgba(165, 94, 240, 0.10));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
}

.wagering-example__title {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold);
}

.wagering-example__calc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--foreground-muted);
}

.wagering-example__calc strong {
    color: var(--gold);
}

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

    .wagering-examples {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   TABLE WRAPPER
   ============================================ */

.table-wrapper {
    margin: var(--space-lg) 0;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
}

.table-wrapper .compare-table {
    margin: 0;
}

.table-wrapper .compare-table th,
.table-wrapper .compare-table td {
    white-space: nowrap;
}

.table-wrapper .compare-table td:first-child,
.table-wrapper .compare-table th:first-child {
    white-space: normal;
}

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

.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border-gold);
    padding-block: var(--space-xl) var(--space-lg);
}

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

.site-brand--footer .site-brand__text {
    font-size: 1.15rem;
}

.site-footer__tagline {
    margin-top: var(--space-sm);
    font-size: var(--fs-small);
    color: var(--muted-foreground);
}

.site-footer__heading {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.site-footer__links,
.site-footer__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

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

.site-footer__links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.site-footer__facts li {
    color: var(--muted-foreground);
}

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

.pay-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.2rem 0.7rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--foreground-muted);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 24px;
    padding: 0 6px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffb3b5;
}

.site-footer__legal {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    font-size: var(--fs-small);
    color: var(--muted-foreground);
    text-align: center;
}

.site-footer__legal p {
    max-width: 90ch;
    margin-inline: auto;
    margin-bottom: var(--space-sm);
}

/* ============================================
   SCROLL REVEAL (JS-enhanced only)
   The unenhanced default state is fully visible.
   .js-reveal is added by script.js before observing.
   ============================================ */

.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s 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,
    .feature-card,
    .faq-item__chevron,
    .menu-toggle span {
        transition: none;
    }
}

/* ============================================
   TABLET - 768px+
   ============================================ */

@media (min-width: 768px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pros-cons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header__register {
        display: inline-flex;
    }
}

/* ============================================
   DESKTOP - 1024px+
   Nav becomes inline, burger hides, drawer resets
   ============================================ */

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

    .primary-nav,
    .primary-nav.is-open {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        border: 0;
        overflow: visible;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        margin-inline: auto;
    }

    .primary-nav__link {
        min-height: 44px;
        padding: 0 var(--space-xs);
        font-size: 1.05rem;
    }

    .primary-nav__auth {
        display: none;
    }

    .site-header__login {
        display: inline-flex;
    }

    .card-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tier-grid--5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }

    .hero {
        padding-block: var(--space-xxl);
    }
}

/* ============================================
   WIDE - 1280px+
   ============================================ */

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