/*
 * V.VEGAS CASINO DESIGN SYSTEM
 * Fixed dark Vegas theme: black aubergine surfaces, warm gold actions,
 * neon cyan/red accents, compact premium typography and illuminated frames.
 */

:root {
    color-scheme: dark;

    --background: #0b0711;
    --background-deep: #07050c;
    --background-soft: #130c1c;
    --surface: #17101f;
    --surface-raised: #211529;
    --surface-glass: #1b1223;
    --surface-gold: #2d201b;
    --foreground: #f7f2f8;
    --foreground-strong: #fff9ed;
    --muted: #c8bdca;
    --muted-strong: #ded5e0;
    --border: #4d3b55;
    --border-strong: #806647;
    --primary: #f3c45f;
    --primary-bright: #ffe08a;
    --primary-deep: #a96b18;
    --primary-foreground: #171006;
    --secondary: #24172d;
    --secondary-foreground: #f7f2f8;
    --accent: #28d7ec;
    --accent-foreground: #071216;
    --neon-red: #ff4057;
    --neon-red-deep: #8c1730;
    --neon-blue: #2ee6ff;
    --success: #78d6a5;
    --success-foreground: #07130c;
    --warning: #f3c45f;
    --warning-foreground: #171006;
    --destructive: #d53146;
    --destructive-foreground: #fff7f8;
    --focus: #ffe08a;
    --scrim: rgba(7, 5, 12, 0.82);
    --shadow-color: rgba(0, 0, 0, 0.44);
    --glow-gold: rgba(243, 196, 95, 0.28);
    --glow-red: rgba(255, 64, 87, 0.22);
    --glow-cyan: rgba(46, 230, 255, 0.20);
    --header-line: rgba(243, 196, 95, 0.38);
    --table-stripe: rgba(255, 255, 255, 0.035);

    --font-body: "Inter", sans-serif;
    --font-display: "Montserrat", sans-serif;

    --text-xs: 0.875rem;
    --text-sm: 0.9375rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: 1.1875rem;
    --text-xl: clamp(1.35rem, calc(1.4vw + 1rem), 1.75rem);
    --text-2xl: clamp(1.65rem, calc(2.2vw + 1rem), 2.5rem);
    --text-3xl: clamp(2rem, calc(3.4vw + 0.8rem), 4rem);
    --text-hero: clamp(2.25rem, calc(4.5vw + 0.5rem), 5.8rem);

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-section: clamp(3.5rem, 8vw, 7.5rem);

    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-pill: 999px;

    --shadow-sm: 0 8px 24px var(--shadow-color);
    --shadow-lg: 0 24px 70px var(--shadow-color);
    --shadow-gold: 0 0 0 1px var(--border-strong), 0 12px 34px var(--glow-gold);

    --container: 76rem;
    --container-wide: 90rem;
    --header-height: 4.5rem;
    --transition: 180ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Predictable mobile layouts
   ============================================ */

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

html {
    min-width: 20rem;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-md));
    background: var(--background);
}

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 5%, var(--glow-red), transparent 24rem),
        radial-gradient(circle at 88% 18%, var(--glow-gold), transparent 28rem),
        linear-gradient(180deg, var(--background-deep), var(--background) 28%, var(--background-soft) 68%, var(--background-deep));
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

section {
    overflow: clip;
}

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

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

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

.table-wrapper,
[class*="table-"] {
    min-width: 0;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--primary-bright);
    text-decoration-color: var(--primary);
    text-underline-offset: 0.18em;
}

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

a[href^="http"],
a[href^="mailto"],
a[href^="tel"] {
    overflow-wrap: anywhere;
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

/* ============================================
   TYPOGRAPHY - Dense, high-impact Vegas headings
   ============================================ */

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-hero);
}

h2 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-2xl);
}

h3 {
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
}

h4 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
    color: var(--muted-strong);
}

.lead {
    max-width: 65ch;
    color: var(--foreground);
    font-size: var(--text-lg);
    line-height: 1.6;
}

.eyebrow,
.kicker {
    margin-bottom: var(--space-sm);
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

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

/* ============================================
   ACCESSIBILITY - Skip link and keyboard helpers
   ============================================ */

.skip-link {
    position: fixed;
    z-index: 2000;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform var(--transition);
}

.skip-link:focus {
    color: var(--primary-foreground);
    transform: translateY(0);
}

/* ============================================
   LAYOUT - Containers, page bands and readable prose
   ============================================ */

.container,
.container-wide {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(100% - 2rem, var(--container-wide));
}

.content-section {
    position: relative;
    padding-block: var(--space-section);
}

.content-section--tight {
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.content-section--surface {
    border-block: 1px solid var(--border);
    background: linear-gradient(135deg, var(--surface-glass), var(--background-soft));
}

.content-section--gold-glow::before {
    position: absolute;
    inset: auto 12% -10rem;
    width: 76%;
    height: 18rem;
    border-radius: 50%;
    background: var(--glow-gold);
    filter: blur(70px);
    content: "";
    pointer-events: none;
}

.prose {
    max-width: 72ch;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.prose h2,
.prose h3 {
    scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}

.two-col,
.media-split,
.content-grid,
.card-grid,
.stats-grid,
.trust-grid,
.game-grid,
.provider-grid,
.directory-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

.media-split {
    align-items: center;
}

.media-split--reverse .media-split__media {
    order: -1;
}

.section-head {
    max-width: 52rem;
    margin-bottom: var(--space-2xl);
}

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

.section-head__kicker {
    margin-bottom: var(--space-sm);
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.section-head__text {
    max-width: 68ch;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: var(--text-md);
}

.section-head--center .section-head__text {
    margin-inline: auto;
}

/* ============================================
   HEADER & NAVIGATION - Fixed mobile shell, inline desktop nav
   ============================================ */

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

.site-header__inner {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-xs);
    width: min(100% - 1rem, var(--container-wide));
    height: 100%;
    margin-inline: auto;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary-bright);
    text-decoration: none;
    line-height: 0.9;
}

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

.site-brand__text {
    max-width: 100%;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: clamp(1.18rem, 6.4vw, 1.7rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 18px var(--glow-gold);
}

.site-brand__text em {
    font-style: normal;
    letter-spacing: -0.045em;
}

.site-brand__sub {
    align-self: flex-end;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    padding: 0.65rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
}

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

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

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

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

.primary-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    display: none;
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
    overflow-y: auto;
    background: var(--background);
}

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

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

.primary-nav__list a {
    display: flex;
    min-height: 3rem;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    align-items: center;
}

.primary-nav__list a:hover,
.primary-nav__list a[aria-current="page"] {
    color: var(--primary-bright);
}

.primary-nav__actions {
    margin-top: var(--space-xl);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-actions .btn {
    min-width: auto;
}

.header-actions .btn--ghost {
    display: none;
}

/* ============================================
   BUTTONS - High-contrast gold conversion controls
   ============================================ */

.btn {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.7rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    align-items: center;
    justify-content: center;
}

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

.btn--gold {
    border-color: var(--primary-bright);
    background: linear-gradient(180deg, var(--primary-bright), var(--primary));
    box-shadow: 0 8px 28px var(--glow-gold);
    color: var(--primary-foreground);
}

.btn--gold:hover {
    background: var(--primary-bright);
    box-shadow: 0 12px 36px var(--glow-gold);
    color: var(--primary-foreground);
}

.btn--ghost {
    border-color: var(--primary);
    background: var(--background-deep);
    color: var(--primary-bright);
}

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

.btn--secondary {
    border-color: var(--border);
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn--sm {
    min-height: 2.75rem;
    padding-inline: clamp(0.72rem, 2.5vw, 1.15rem);
    font-size: var(--text-sm);
}

.btn--lg {
    min-height: 3.6rem;
    padding-inline: clamp(1.5rem, 5vw, 3.5rem);
    font-size: var(--text-lg);
}

.btn--block {
    width: 100%;
}

/* ============================================
   HEROES - Integrated art with neon ambient scenery
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    padding-block: var(--space-xl) var(--space-3xl);
    background:
        radial-gradient(circle at 25% 40%, var(--glow-red), transparent 36%),
        radial-gradient(circle at 70% 28%, var(--glow-cyan), transparent 30%),
        linear-gradient(115deg, var(--background-soft), var(--background-deep));
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.hero::before {
    inset: 8% auto auto -8rem;
    width: 20rem;
    height: 20rem;
    border: 2px solid var(--neon-red-deep);
    border-radius: 45% 55% 50% 50%;
    box-shadow: 0 0 55px var(--glow-red);
    transform: rotate(24deg);
}

.hero::after {
    right: -7rem;
    bottom: 8%;
    width: 18rem;
    height: 18rem;
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    box-shadow: 0 0 70px var(--glow-gold);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    width: min(100% - 2rem, var(--container-wide));
    margin-inline: auto;
}

.hero__media {
    position: relative;
    min-height: 20rem;
    order: -1;
}

.hero__media img[data-visual-role="hero-foreground"] {
    position: absolute;
    inset: auto 50% 0 auto;
    width: min(42rem, 112%);
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 34px var(--shadow-color));
    transform: translateX(50%);
}

.hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
}

.hero__content .breadcrumbs {
    padding-top: 0;
    padding-bottom: var(--space-sm);
}

.hero__content .tldr-box:last-child,
.media-split__media .tldr-box:last-child {
    margin-bottom: 0;
}

.hero__title {
    color: var(--primary-bright);
    text-wrap: balance;
    text-shadow: 0 0 28px var(--glow-gold);
}

.hero__lead {
    max-width: 62ch;
    color: var(--foreground);
    font-size: var(--text-lg);
}

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

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

.hero__facts li {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    background: var(--surface-glass);
    color: var(--foreground);
    font-size: var(--text-sm);
    font-weight: 700;
}

/* ============================================
   CARDS - Reusable content containers and directory links
   ============================================ */

.card,
.info-card,
.link-card,
.testimonial-card {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-raised), var(--surface));
    box-shadow: var(--shadow-sm);
}

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

.info-card__kicker,
.info-card__meta,
.link-card__meta {
    margin-bottom: var(--space-xs);
    color: var(--primary-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-card__title,
.link-card__title {
    margin-bottom: var(--space-sm);
}

.info-card__text,
.link-card__text {
    margin-bottom: 0;
}

.info-card__link {
    display: inline-block;
    margin-top: var(--space-md);
    font-weight: 800;
}

.link-card {
    border-color: var(--border-strong);
}

.link-card__title a {
    color: var(--primary-bright);
    text-decoration: none;
}

.link-card__title a::after {
    content: " ↗";
}

/* ============================================
   NEON OFFERS - Illuminated marquee bonus tiles
   ============================================ */

.neon-offer {
    min-width: 0;
    padding: 0.55rem;
    border-radius: var(--radius-lg);
    background: var(--primary);
    box-shadow: 0 0 28px var(--glow-gold);
}

.neon-offer--cyan {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 0 32px var(--glow-cyan);
}

.neon-offer--red {
    background: linear-gradient(135deg, var(--neon-red), var(--primary));
    box-shadow: 0 0 32px var(--glow-red);
}

.neon-offer__frame {
    position: relative;
    height: 100%;
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 2px solid var(--primary-bright);
    border-radius: calc(var(--radius-lg) - 0.35rem);
    background:
        radial-gradient(circle at center, var(--surface-raised), var(--background-deep) 76%);
    text-align: center;
}

.neon-offer__frame::before {
    position: absolute;
    inset: 0.35rem;
    border: 1px solid var(--accent);
    border-radius: calc(var(--radius-lg) - 0.65rem);
    box-shadow: inset 0 0 18px var(--glow-cyan);
    content: "";
    pointer-events: none;
}

.neon-offer__value {
    position: relative;
    margin: 0;
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
}

.neon-offer__headline {
    position: relative;
    margin: var(--space-xs) 0;
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.neon-offer__text,
.neon-offer__foot {
    position: relative;
    margin: var(--space-sm) auto 0;
    max-width: 34ch;
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

.neon-offer__foot {
    color: var(--foreground);
    font-weight: 700;
}

/* ============================================
   TRUST SIGNALS - Gold seals, muted logo rows and badges
   ============================================ */

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

.trust-seal {
    min-width: 0;
    text-align: center;
}

.trust-seal__disc {
    display: grid;
    width: clamp(5.25rem, 22vw, 8rem);
    aspect-ratio: 1;
    margin: 0 auto var(--space-md);
    border: 0.42rem double var(--primary);
    border-radius: 50%;
    background: radial-gradient(circle, var(--surface-raised) 42%, var(--surface-gold));
    box-shadow: inset 0 0 22px var(--glow-gold), 0 0 24px var(--glow-gold);
    color: var(--primary-bright);
    place-items: center;
}

.trust-seal__mark {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 5vw, 2rem);
    font-weight: 900;
    line-height: 1;
}

.trust-seal__label {
    margin-bottom: var(--space-2xs);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 800;
}

.trust-seal__desc {
    margin: 0 auto;
    max-width: 24ch;
    color: var(--muted);
    font-size: var(--text-xs);
}

.trust-badges-row {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    scrollbar-color: var(--primary) var(--surface);
}

.trust-badges-row > * {
    min-width: 8.5rem;
    flex: 1 0 8.5rem;
}

/* ============================================
   STAT HIGHLIGHTS - Numbers-first scanning for bonus hunters
   ============================================ */

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

.stat-highlight {
    display: flex;
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-raised), var(--background-deep));
    box-shadow: inset 0 0 26px var(--glow-gold);
    flex-direction: column;
    justify-content: center;
}

.stat-highlight__number {
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4.25rem);
    font-weight: 900;
    line-height: 1;
}

.stat-highlight__label {
    margin-top: var(--space-xs);
    color: var(--foreground-strong);
    font-weight: 800;
}

.stat-highlight__note {
    margin-top: var(--space-xs);
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   GAME & PROVIDER GRIDS - Dense thumbnail galleries
   ============================================ */

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

.game-tile {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.game-tile img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--surface-raised);
}

.game-tile__caption {
    display: flex;
    padding: var(--space-sm);
    flex-direction: column;
    gap: var(--space-2xs);
}

.game-tile__title {
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 800;
}

.game-tile__provider {
    color: var(--muted);
    font-size: var(--text-xs);
}

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

.provider-logo {
    display: flex;
    min-height: 5rem;
    min-width: 0;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--muted-strong);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.provider-logo__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.provider-logo__note {
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   MEDIA - Framed editorial scenes and plain integrated art
   ============================================ */

.media-figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--surface-raised);
    box-shadow: var(--shadow-lg);
}

.media-figure img {
    width: 100%;
    object-fit: cover;
}

.media-figure figcaption {
    padding: var(--space-sm) var(--space-md);
    color: var(--muted);
    font-size: var(--text-xs);
}

.media-figure--plain {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* ============================================
   TABLES - Transparent comparisons with highlighted rows
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    scrollbar-color: var(--primary) var(--surface);
}

.data-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.data-table caption {
    padding: var(--space-md) var(--space-lg);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 800;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: 0.9rem var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--muted-strong);
    text-align: left;
    vertical-align: top;
}

.data-table thead th {
    background: var(--surface-gold);
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-weight: 800;
    white-space: nowrap;
}

.data-table tbody th {
    color: var(--foreground-strong);
    font-weight: 800;
}

.data-table tbody tr:nth-child(even) {
    background: var(--table-stripe);
}

.data-table tbody tr.is-featured {
    background: var(--surface-gold);
    box-shadow: inset 4px 0 0 var(--primary);
}

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

.table-note {
    margin: var(--space-sm) 0 0;
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   SUMMARY & CALLOUTS - Scannable evidence and limitations
   ============================================ */

.tldr-box,
.callout {
    min-width: 0;
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-left: 0.35rem solid var(--primary);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--surface-gold), var(--surface));
}

.tldr-box__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-weight: 800;
}

.tldr-box__list {
    margin: 0;
    padding-left: 1.2rem;
}

.tldr-box__list li + li {
    margin-top: var(--space-xs);
}

.callout__text {
    margin: 0;
}

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

.callout--danger {
    border-left-color: var(--destructive);
    background: linear-gradient(135deg, var(--neon-red-deep), var(--surface));
}

.callout--success {
    border-left-color: var(--success);
}

/* ============================================
   PULL QUOTES & SOCIAL PROOF - Editorial visual breaks
   ============================================ */

.pull-quote {
    position: relative;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) var(--space-lg);
    border-block: 1px solid var(--border-strong);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.4;
}

.pull-quote::before {
    position: absolute;
    top: -1.8rem;
    left: 0;
    color: var(--primary);
    font-size: 4rem;
    line-height: 1;
    content: "“";
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-style: normal;
    font-weight: 600;
}

.testimonial-grid {
    align-items: start;
}

.testimonial-card__quote {
    margin-bottom: var(--space-lg);
    color: var(--foreground);
    font-size: var(--text-lg);
}

.testimonial-card__author {
    margin: 0;
    color: var(--primary-bright);
    font-weight: 800;
}

.testimonial-card__meta {
    margin: var(--space-2xs) 0 0;
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   NATIVE ACCORDIONS - Accessible FAQs without custom JS
   ============================================ */

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

.faq-item {
    align-self: start;
    overflow: clip;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.faq-item__q {
    position: relative;
    min-height: 3.5rem;
    padding: var(--space-md) 3.5rem var(--space-md) var(--space-lg);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__q::after {
    position: absolute;
    top: 50%;
    right: var(--space-lg);
    color: var(--primary-bright);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1;
    content: "+";
    transform: translateY(-50%);
    transition: transform var(--transition);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.faq-item[open] .faq-item__q::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item__a {
    padding: 0 var(--space-lg) var(--space-lg);
}

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

/* ============================================
   PROCESS STEPS - Numbered registration and KYC flows
   ============================================ */

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

.steps-list__item {
    position: relative;
    min-width: 0;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    counter-increment: steps;
}

.steps-list__item::before {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--primary-bright);
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 900;
    content: counter(steps);
    place-items: center;
}

.steps-list__title {
    margin-bottom: var(--space-xs);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 800;
}

.steps-list__text {
    margin: 0;
}

/* ============================================
   CTA BAND - Full-width conversion close
   ============================================ */

.cta-band {
    position: relative;
    padding: clamp(2.5rem, 7vw, 5rem) var(--space-md);
    overflow: clip;
    border-block: 1px solid var(--border-strong);
    background:
        radial-gradient(circle at 50% 115%, var(--glow-gold), transparent 55%),
        linear-gradient(135deg, var(--surface-raised), var(--background-deep));
    text-align: center;
}

.cta-band::before,
.cta-band::after {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border: 1px solid var(--primary);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 35px var(--glow-gold);
}

.cta-band::before {
    top: -4rem;
    left: -2rem;
}

.cta-band::after {
    right: -2rem;
    bottom: -4rem;
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin-inline: auto;
}

.cta-band__title {
    margin-bottom: var(--space-sm);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 900;
    line-height: 1.2;
}

.cta-band__text {
    max-width: 60ch;
    margin: 0 auto var(--space-lg);
}

.cta-band__note {
    margin: var(--space-sm) auto 0;
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   BREADCRUMBS - Compact orientation on content pages
   ============================================ */

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

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

.breadcrumbs__item {
    color: var(--muted);
    font-size: var(--text-xs);
}

.breadcrumbs__item:not(:last-child)::after {
    margin-left: var(--space-xs);
    color: var(--primary);
    content: "/";
}

.breadcrumbs a {
    color: var(--muted-strong);
}

/* ============================================
   PAYMENT CHIPS - Neutral wordmarks and cashier badges
   ============================================ */

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

.payment-chip {
    display: inline-flex;
    min-height: 2.25rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-raised);
    color: var(--muted-strong);
    font-size: var(--text-xs);
    font-weight: 700;
    align-items: center;
}

/* ============================================
   FOOTER - Licence, payment and responsible-play close
   ============================================ */

.site-footer {
    border-top: 1px solid var(--header-line);
    background: var(--background-deep);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    width: min(100% - 2rem, var(--container-wide));
    margin-inline: auto;
    padding-block: var(--space-3xl);
}

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

.site-footer__brand {
    margin-bottom: var(--space-md);
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 900;
}

.site-footer__brand em {
    font-style: normal;
}

.site-footer__title {
    margin-bottom: var(--space-md);
    font-size: var(--text-md);
}

.site-footer__note,
.site-footer__licence,
.site-footer__age {
    color: var(--muted);
    font-size: var(--text-sm);
}

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

.site-footer__links li + li {
    margin-top: var(--space-xs);
}

.site-footer__links a {
    color: var(--muted-strong);
}

.site-footer__age {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.age-mark {
    display: inline-grid;
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 3.25rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary-bright);
    font-family: var(--font-display);
    font-weight: 900;
    place-items: center;
}

.site-footer__bottom {
    padding: var(--space-lg) max(var(--space-md), calc((100% - var(--container-wide)) / 2));
    border-top: 1px solid var(--border);
}

.site-footer__bottom p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-xs);
}

/* ============================================
   SCROLL ENHANCEMENT - Visible by default, one-way reveal only
   ============================================ */

.js-reveal-enabled [data-reveal].is-reveal-pending {
    opacity: 0;
    transform: translateY(1.25rem);
}

.js-reveal-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: opacity 520ms ease, transform 520ms ease;
}

/* ============================================
   TABLET ENHANCEMENTS - 768px and wider
   ============================================ */

@media (min-width: 48rem) {
    :root {
        --header-height: 5rem;
    }

    .container,
    .container-wide {
        width: min(100% - 3rem, var(--container));
    }

    .container-wide {
        width: min(100% - 3rem, var(--container-wide));
    }

    .site-header__inner {
        width: min(100% - 2rem, var(--container-wide));
        grid-template-columns: 3rem minmax(9rem, 1fr) auto;
        gap: var(--space-md);
    }

    .site-brand__text {
        font-size: 1.85rem;
    }

    .site-brand__sub {
        font-size: 0.65rem;
    }

    .header-actions .btn--ghost {
        display: inline-flex;
    }

    .hero__inner {
        width: min(100% - 3rem, var(--container-wide));
    }

    .hero__media {
        min-height: 28rem;
    }

    .two-col,
    .media-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2xl);
    }

    .media-split--reverse .media-split__media {
        order: initial;
    }

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

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

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

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

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

    .site-footer__inner {
        width: min(100% - 3rem, var(--container-wide));
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   DESKTOP CONTRACT - 1024px hero split and inline navigation
   ============================================ */

@media (min-width: 64rem) {
    :root {
        --header-height: 6.25rem;
    }

    .site-header {
        background: var(--scrim);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .site-header__inner {
        display: flex;
        width: min(100% - 3rem, var(--container-wide));
        gap: clamp(1rem, 2.6vw, 2.75rem);
    }

    .site-brand {
        min-width: 13rem;
        margin-right: auto;
    }

    .site-brand__text {
        font-size: 2.35rem;
    }

    .nav-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        min-width: 0;
        padding: 0;
        overflow: visible;
        background: transparent;
        align-items: center;
        justify-content: flex-end;
    }

    .primary-nav__list {
        min-width: 0;
        flex-direction: row;
        align-items: center;
        gap: clamp(0.25rem, 1vw, 1rem);
    }

    .primary-nav__list a {
        position: relative;
        min-height: 3rem;
        padding: 0.6rem clamp(0.5rem, 0.9vw, 0.9rem);
        border: 0;
        white-space: nowrap;
    }

    .primary-nav__list a::after {
        position: absolute;
        right: 0.5rem;
        bottom: 0.15rem;
        left: 0.5rem;
        height: 2px;
        background: var(--primary);
        content: "";
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .primary-nav__list a:hover::after,
    .primary-nav__list a[aria-current="page"]::after {
        transform: scaleX(1);
    }

    .primary-nav__actions {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        min-height: min(56rem, calc(100svh - var(--header-height)));
        padding-block: 0;
    }

    .hero__inner {
        min-height: min(56rem, calc(100svh - var(--header-height)));
        grid-template-columns: minmax(0, 1.05fr) minmax(26rem, 0.95fr);
        gap: clamp(1rem, 3vw, 4rem);
        align-items: stretch;
    }

    .hero__media {
        min-height: 100%;
        order: initial;
    }

    .hero__media img[data-visual-role="hero-foreground"] {
        inset: auto auto 0 50%;
        width: min(58rem, 124%);
        height: 98%;
        object-position: center bottom;
        transform: translateX(-50%);
    }

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

    .hero__title {
        font-size: clamp(3.2rem, 5.8vw, 6.3rem);
    }

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

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

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

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

    .site-footer__inner {
        grid-template-columns: 1.15fr 0.8fr 1.25fr 1fr;
    }
}

/* ============================================
   WIDE DESKTOP - Preserve density without excessive line length
   ============================================ */

@media (min-width: 80rem) {
    .game-grid.game-grid--wide {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .hero__content {
        padding-right: var(--space-lg);
    }
}

/* ============================================
   SMALL PHONE FIT - Header remains usable at 320px
   ============================================ */

@media (max-width: 23.4375rem) {
    .site-header__inner {
        width: calc(100% - 0.5rem);
        grid-template-columns: 2.75rem minmax(0, 1fr) auto;
        gap: 0.2rem;
    }

    .nav-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    .site-brand__text {
        font-size: 1.12rem;
    }

    .site-brand__sub {
        display: none;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .header-actions .btn--gold {
        padding-inline: 0.68rem;
        font-size: 0.875rem;
    }

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

/* ============================================
   REDUCED MOTION - No hidden content or animated movement
   ============================================ */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-reveal-enabled [data-reveal].is-reveal-pending,
    .js-reveal-enabled [data-reveal].is-revealed {
        opacity: 1;
        transform: none;
    }
}
