/*
 * ZOCCER CASINO DESIGN SYSTEM
 * Fixed dark football-comic theme with pitch green and electric lime accents.
 */

:root {
    --background: #0d0f14;
    --background-deep: #080a0d;
    --surface: #181b23;
    --surface-raised: #222632;
    --surface-soft: #343a48;
    --surface-light: #f4f5f1;
    --foreground: #f4f5f1;
    --foreground-dark: #667360;
    --muted: #242934;
    --muted-foreground: #b9bec8;
    --primary: #b9ff38;
    --primary-hover: #d4ff76;
    --primary-foreground: #0b0d08;
    --secondary: #126b38;
    --secondary-hover: #177b43;
    --secondary-foreground: #ffffff;
    --lime-on-light: #397600;
    --accent: #ffd93d;
    --accent-foreground: #161306;
    --destructive: #b92836;
    --destructive-foreground: #ffffff;
    --border: #454b59;
    --border-strong: #050607;
    --focus: #f4ff9a;
    --success: #53c96c;
    --warning: #ffca3a;
    --info: #59b7ff;
    --comic-orange: #ff6b35;
    --comic-blue: #39a9ff;
    --shadow: rgba(0, 0, 0, 0.52);
    --shadow-soft: rgba(0, 0, 0, 0.28);
    --lime-glow: rgba(185, 255, 56, 0.28);
    --yellow-glow: rgba(255, 217, 61, 0.22);
    --overlay: rgba(8, 10, 13, 0.76);
    --white-panel: #f4f5f1;
    --white-panel-muted: #555b64;
    --header-height: 74px;
    --container: 1280px;
    --content-width: 780px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --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;
    --font-body: "Barlow", Arial, sans-serif;
    --font-display: "Barlow Condensed", Impact, sans-serif;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Stable at 320px+
   ============================================ */

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

html {
    min-width: 320px;
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-md));
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 8%, var(--lime-glow), transparent 24rem),
        linear-gradient(145deg, var(--background), var(--background-deep) 62%, var(--surface));
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(90deg, transparent 49.75%, var(--border) 50%, transparent 50.25%),
        linear-gradient(0deg, transparent 49.75%, var(--border) 50%, transparent 50.25%);
    background-size: 88px 88px;
    opacity: 0.08;
    content: "";
    pointer-events: none;
}

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

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

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

button {
    cursor: pointer;
}

input,
textarea,
select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

::placeholder {
    color: var(--muted-foreground);
    opacity: 1;
}

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

p,
li,
td,
th,
dd,
figcaption {
    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;
}

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

section {
    overflow: clip;
}

details {
    height: fit-content;
}

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

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]):hover {
    color: var(--primary-hover);
}

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

/* ============================================
   TYPOGRAPHY - Condensed comic headlines, clear prose
   ============================================ */

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

h1,
h2,
h3,
h4 {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.08;
}

h1 {
    margin-bottom: var(--space-lg);
    font-size: clamp(2.6rem, calc(8vw + 0.4rem), 4.8rem);
}

h2 {
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, calc(4vw + 0.5rem), 3.5rem);
}

h3 {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.45rem, calc(2vw + 0.5rem), 2rem);
}

h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

p {
    max-width: var(--content-width);
    margin-bottom: var(--space-md);
}

ul,
ol {
    padding-left: 1.35rem;
}

small,
.caption {
    font-size: 0.875rem;
}

.text-accent,
.highlight {
    color: var(--primary);
}

.lead {
    max-width: 68ch;
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, calc(1vw + 0.8rem), 1.3rem);
    line-height: 1.55;
}

.display-outline {
    text-shadow:
        -2px -2px 0 var(--border-strong),
        2px -2px 0 var(--border-strong),
        -2px 2px 0 var(--border-strong),
        2px 2px 0 var(--border-strong),
        0 5px 0 var(--border-strong);
}

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

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

.skip-link:focus {
    transform: translateY(0);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   LAYOUT - Shared page widths and section rhythm
   ============================================ */

main {
    min-height: 70vh;
}

.container,
.section-inner,
.site-header__inner,
.site-footer__inner,
.site-footer__legal {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.content-narrow {
    width: min(100%, var(--content-width));
}

.page-section {
    position: relative;
    padding-block: var(--space-2xl);
}

.page-section--surface {
    background: linear-gradient(145deg, var(--surface), var(--surface-raised));
}

.page-section--pitch {
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), var(--border) 50%, transparent calc(50% + 1px)),
        repeating-linear-gradient(90deg, var(--secondary), var(--secondary) 80px, var(--secondary-hover) 80px, var(--secondary-hover) 160px);
}

.section-head {
    max-width: 820px;
    margin-bottom: var(--space-xl);
}

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

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

.section-head__kicker {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.section-head__lead {
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 1.08rem;
}

.two-column,
.split-layout,
.media-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.card-grid,
.feature-grid,
.category-grid,
.game-grid,
.offer-grid,
.stats-grid,
.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

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

/* ============================================
   HEADER & NAVIGATION - Opaque mobile drawer
   ============================================ */

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

.site-header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

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

.site-brand__mark {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
    place-items: center;
    transform: skew(-7deg);
    border: 3px solid var(--foreground);
    background:
        radial-gradient(circle at 50% 50%, var(--primary) 0 22%, transparent 24%),
        var(--background-deep);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--border-strong);
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 0.78;
    text-transform: uppercase;
}

.site-brand__name {
    font-family: var(--font-display);
    font-size: 1.72rem;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.site-brand__sub {
    align-self: flex-end;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: grid;
    min-width: 48px;
    min-height: 48px;
    padding: 0.65rem;
    grid-template-columns: 1.45rem auto;
    grid-template-rows: repeat(3, 4px);
    align-content: center;
    align-items: center;
    gap: 4px 0.55rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--foreground);
}

.nav-toggle > span:not(.nav-toggle__label) {
    display: block;
    width: 1.45rem;
    height: 3px;
    grid-column: 1;
    border-radius: var(--radius-pill);
    background: var(--primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle__label {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    font-weight: 700;
}

.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 {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 999;
    display: flex;
    max-width: 100vw;
    padding: var(--space-lg) max(var(--space-md), calc((100vw - var(--container)) / 2));
    overflow-y: auto;
    flex-direction: column;
    gap: var(--space-lg);
    background: var(--background);
}

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

.primary-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0.7rem var(--space-md);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus-visible,
.primary-nav__list a[aria-current="page"] {
    background: var(--surface-raised);
    color: var(--primary);
}

.header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

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

.btn {
    display: inline-flex;
    width: fit-content;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-strong);
    border-radius: var(--radius-pill);
    box-shadow: 0 5px 0 var(--border-strong);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--border-strong), 0 0 28px var(--lime-glow);
}

.btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--border-strong);
}

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

.btn--primary:hover {
    background: var(--primary-hover);
    color: var(--primary-foreground);
}

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

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

.btn--ghost {
    border-color: var(--primary);
    box-shadow: none;
    background: var(--background);
    color: var(--primary);
}

.btn--ghost:hover {
    background: var(--surface-raised);
    color: var(--primary-hover);
}

.btn--sm {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
}

.btn--lg {
    min-height: 56px;
    padding: 0.9rem 1.8rem;
    font-size: clamp(1.3rem, calc(1vw + 1rem), 1.65rem);
}

/* ============================================
   HEROES - Integrated comic foreground artwork
   ============================================ */

.hero,
.page-hero {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    padding-block: var(--space-2xl);
    background:
        radial-gradient(circle at 78% 42%, var(--yellow-glow), transparent 23rem),
        radial-gradient(circle at 75% 50%, var(--lime-glow), transparent 18rem),
        linear-gradient(135deg, var(--surface-raised), var(--background-deep));
}

.hero::before,
.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        repeating-conic-gradient(from 225deg at 72% 48%, var(--surface-raised) 0 7deg, transparent 7deg 14deg),
        radial-gradient(circle, var(--border) 1.3px, transparent 1.6px);
    background-size: auto, 10px 10px;
    opacity: 0.38;
    content: "";
}

.hero::after,
.page-hero::after {
    position: absolute;
    right: -10%;
    bottom: -2px;
    left: -10%;
    z-index: -1;
    height: 27%;
    transform: perspective(520px) rotateX(58deg);
    transform-origin: bottom;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), var(--foreground) 50%, transparent calc(50% + 1px)),
        linear-gradient(0deg, transparent calc(50% - 1px), var(--foreground) 50%, transparent calc(50% + 1px)),
        repeating-linear-gradient(90deg, var(--secondary), var(--secondary) 90px, var(--secondary-hover) 90px, var(--secondary-hover) 180px);
    opacity: 0.34;
    content: "";
}

.hero__inner,
.page-hero__inner {
    display: grid;
    width: min(100% - 2rem, var(--container));
    min-height: inherit;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: var(--space-xl);
}

.hero__content,
.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.hero__eyebrow,
.page-hero__eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero__title,
.page-hero__title {
    text-shadow:
        -2px -2px 0 var(--border-strong),
        2px -2px 0 var(--border-strong),
        -2px 2px 0 var(--border-strong),
        2px 2px 0 var(--border-strong),
        0 6px 0 var(--border-strong);
}

.hero__lead,
.page-hero__lead {
    max-width: 58ch;
    color: var(--foreground);
    font-size: 1.08rem;
}

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

.hero__visual,
.page-hero__visual {
    position: relative;
    min-height: 350px;
    align-self: stretch;
}

.hero__visual img,
.page-hero__visual img,
[data-visual-role="hero-foreground"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 18px var(--shadow));
}

.comic-bubble {
    position: absolute;
    z-index: 3;
    display: grid;
    min-width: 7rem;
    min-height: 5rem;
    padding: 0.75rem 1rem;
    place-items: center;
    transform: rotate(-7deg);
    border: 4px solid var(--border-strong);
    background: var(--surface-light);
    color: var(--primary-foreground);
    clip-path: polygon(50% 0%, 60% 13%, 75% 5%, 79% 20%, 96% 21%, 88% 37%, 100% 50%, 85% 59%, 94% 78%, 75% 78%, 68% 96%, 52% 84%, 36% 100%, 29% 81%, 8% 87%, 13% 66%, 0 54%, 15% 43%, 4% 26%, 25% 24%, 30% 5%);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(4vw + 0.5rem), 3.5rem);
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 2px 2px 0 var(--primary);
}

.comic-bubble--top {
    top: 5%;
    left: 2%;
}

.comic-bubble--bottom {
    right: 0;
    bottom: 3%;
}

/* ============================================
   CARDS - Comic panels and content containers
   ============================================ */

.card,
.info-card,
.feature-card,
.offer-card,
.game-card,
.social-proof-card {
    min-width: 0;
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--surface-raised), var(--surface));
    box-shadow: 6px 7px 0 var(--border-strong);
}

.card,
.info-card,
.feature-card,
.offer-card,
.social-proof-card {
    padding: var(--space-lg);
}

.feature-card,
.offer-card,
.social-proof-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.offer-card::after {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 1px, transparent 2px);
    background-size: 7px 7px;
    opacity: 0.18;
    content: "";
}

.feature-card__icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: var(--space-md);
    place-items: center;
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.feature-card__text,
.offer-card__text,
.game-card__text {
    color: var(--muted-foreground);
}

.feature-card__link,
.offer-card__link,
.game-card__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.offer-card--highlight {
    border-color: var(--primary);
    box-shadow: 6px 7px 0 var(--border-strong), 0 0 32px var(--lime-glow);
}

.offer-card__amount {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 0.5rem), 3rem);
    font-weight: 700;
    line-height: 1;
}

.offer-card__terms,
.media-block__list {
    padding-left: 1.2rem;
}

.offer-card__terms li::marker,
.media-block__list li::marker {
    color: var(--primary);
}

.game-card {
    overflow: hidden;
    background: var(--white-panel);
    color: var(--foreground-dark);
}

.game-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 3px solid var(--border-strong);
    background: var(--surface);
}

.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.game-card__body {
    padding: var(--space-lg);
    text-align: center;
}

.game-card__title {
    color: var(--foreground-dark);
}

.game-card__text {
    color: var(--white-panel-muted);
}

.game-card__count {
    display: inline-block;
    margin-bottom: var(--space-xs);
    color: var(--secondary);
    font-weight: 700;
}

.game-card__link {
    color: var(--foreground-dark);
}

/* ============================================
   STAT HIGHLIGHTS - Speech-bubble quick facts
   ============================================ */

.stat-block {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 190px;
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-strong);
    background: var(--surface-light);
    color: var(--foreground-dark);
    clip-path: polygon(6% 8%, 20% 10%, 26% 0, 37% 10%, 50% 2%, 61% 11%, 75% 2%, 81% 14%, 96% 11%, 91% 29%, 100% 42%, 91% 53%, 98% 69%, 81% 72%, 77% 94%, 61% 84%, 51% 100%, 40% 85%, 25% 96%, 22% 78%, 4% 83%, 10% 62%, 0 50%, 10% 38%);
    text-align: center;
}

.stat-block__number {
    color: var(--lime-on-light);
    font-family: var(--font-display);
    font-size: clamp(2.75rem, calc(5vw + 0.5rem), 5rem);
    font-weight: 700;
    line-height: 0.9;
    text-shadow:
        -2px -2px 0 var(--border-strong),
        2px -2px 0 var(--border-strong),
        -2px 2px 0 var(--border-strong),
        2px 2px 0 var(--border-strong);
}

.stat-block__label {
    margin-top: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
}

.stat-block__note {
    max-width: 18rem;
    margin-top: var(--space-xs);
    color: var(--white-panel-muted);
    font-size: 0.875rem;
}

/* ============================================
   MEDIA BLOCKS - Framed editorial section visuals
   ============================================ */

.media-block {
    padding: var(--space-lg);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface-raised), var(--surface));
    box-shadow: 7px 8px 0 var(--border-strong);
}

.media-block__media {
    min-width: 0;
    overflow: hidden;
    border: 3px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.media-block__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.media-block__text {
    color: var(--muted-foreground);
}

/* ============================================
   SUMMARY & CALLOUTS - Citation-friendly emphasis
   ============================================ */

.summary-box,
.callout {
    min-width: 0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
}

.summary-box {
    border: 2px solid var(--primary);
    box-shadow: inset 6px 0 0 var(--primary);
}

.summary-box__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.summary-box__list {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

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

.summary-box__list li::marker {
    color: var(--primary);
}

.callout {
    border: 1px solid var(--border);
    border-left: 6px solid var(--info);
}

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

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

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

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

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

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

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

.table-wrapper {
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 5px 6px 0 var(--border-strong);
}

.data-table,
.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    color: var(--foreground);
}

.data-table caption,
.comparison-table caption {
    padding: var(--space-md);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: left;
}

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

.data-table thead th,
.comparison-table thead th {
    background: var(--surface-soft);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.data-table tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
    background: var(--surface-raised);
}

.data-table .is-highlight,
.comparison-table .is-recommended {
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: 700;
}

/* ============================================
   FAQ ACCORDION - Native details/summary disclosures
   ============================================ */

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

.faq-item {
    min-width: 0;
    align-self: start;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--primary);
    background: var(--surface-raised);
}

.faq-item__q {
    position: relative;
    min-height: 56px;
    padding: 0.9rem 3.25rem 0.9rem var(--space-md);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

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

.faq-item__q::before,
.faq-item__q::after {
    position: absolute;
    top: 50%;
    right: var(--space-md);
    width: 1rem;
    height: 3px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    content: "";
    transition: transform var(--transition-fast);
}

.faq-item__q::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-item__q::after {
    transform: rotate(0);
}

.faq-item__q:focus-visible {
    border-radius: var(--radius-sm);
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.faq-item__a {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--muted-foreground);
}

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

/* ============================================
   STEPS - Numbered cash-out and registration flows
   ============================================ */

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

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

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

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

.step-list__text {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST, PROVIDER & PAYMENT ROWS - Static finite grids
   ============================================ */

.trust-badges,
.logo-row {
    min-width: 0;
}

.trust-badges__title,
.logo-row__title {
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-badges__list,
.logo-row__list,
.pay-list,
.legal-badges {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
}

.badge-chip,
.logo-row__item,
.pay-list li {
    display: inline-flex;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface-raised);
    color: var(--foreground);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.badge-chip--age {
    min-width: 50px;
    border-color: var(--destructive);
    background: var(--surface-light);
    color: var(--destructive);
    font-size: 1.1rem;
    font-weight: 700;
}

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

.logo-row__item {
    min-height: 64px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.1rem;
    filter: saturate(0.75);
}

/* ============================================
   PULL QUOTE & SOCIAL PROOF - Optional evidence blocks
   ============================================ */

.pull-quote {
    position: relative;
    max-width: 880px;
    margin: var(--space-xl) auto;
    padding: var(--space-xl);
    border-block: 3px solid var(--primary);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, calc(2vw + 1rem), 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.pull-quote p {
    max-width: none;
    margin-bottom: var(--space-sm);
}

.pull-quote__cite {
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
}

.social-proof-card__quote {
    color: var(--foreground);
    font-size: 1.05rem;
}

.social-proof-card__source {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   CTA BAND - Conversion close with stadium glow
   ============================================ */

.cta-band {
    position: relative;
    padding-block: var(--space-2xl);
    border-block: 3px solid var(--border-strong);
    background:
        radial-gradient(circle at 50% 0, var(--lime-glow), transparent 28rem),
        linear-gradient(135deg, var(--secondary), var(--background-deep));
}

.cta-band::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--foreground) 1px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.07;
    content: "";
}

.cta-band__inner {
    position: relative;
    width: min(100% - 2rem, 850px);
    margin-inline: auto;
    text-align: center;
}

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

.cta-band__text,
.cta-band__note {
    margin-inline: auto;
}

.cta-band__text {
    color: var(--foreground);
}

.cta-band__note {
    margin-top: var(--space-md);
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS & SITEMAP - Neutral navigation aids
   ============================================ */

.breadcrumbs {
    width: min(100% - 2rem, var(--container));
    margin: var(--space-md) auto;
}

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

.breadcrumbs__list li + li::before {
    margin-right: var(--space-xs);
    color: var(--primary);
    content: "/";
}

.breadcrumbs__root {
    color: var(--muted-foreground);
}

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

.sitemap-entry {
    min-width: 0;
    padding: var(--space-lg);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.sitemap-entry__link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    text-underline-offset: 0.2em;
}

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

/* ============================================
   FOOTER - Internal links, payments, licence, 18+
   ============================================ */

.site-footer {
    border-top: 3px solid var(--border-strong);
    background: var(--background-deep);
}

.site-footer__inner {
    display: grid;
    padding-block: var(--space-2xl);
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

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

.site-footer__claim {
    margin-top: var(--space-md);
    margin-bottom: 0;
    color: var(--muted-foreground);
}

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

.footer-col:last-child {
    grid-column: 1 / -1;
}

.footer-col__title {
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

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

.footer-col li + li {
    margin-top: var(--space-xs);
}

.footer-col a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.footer-col a:hover {
    color: var(--primary);
}

.site-footer__legal {
    padding-block: var(--space-lg);
    border-top: 1px solid var(--border);
}

.legal-text {
    max-width: 90ch;
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.legal-copy {
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   SCROLL REVEAL - Progressive enhancement only
   ============================================ */

.reveal-target {
    opacity: 1;
    transform: none;
}

.js-reveal .reveal-target:not(.is-revealed) {
    opacity: 0;
    transform: translateY(18px);
}

.js-reveal .reveal-target {
    transition: opacity 520ms ease, transform 520ms ease;
}

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

/* ============================================
   TABLET - More breathing room and balanced grids
   ============================================ */

@media (min-width: 768px) {
    :root {
        --header-height: 82px;
    }

    .container,
    .section-inner,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__legal,
    .hero__inner,
    .page-hero__inner,
    .breadcrumbs {
        width: min(100% - 3rem, var(--container));
    }

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

    .hero,
    .page-hero {
        min-height: 720px;
    }

    .hero__inner,
    .page-hero__inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .hero__visual,
    .page-hero__visual {
        min-height: 560px;
    }

    .stats-grid,
    .game-grid,
    .feature-grid,
    .category-grid,
    .offer-grid,
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid > :last-child:nth-child(odd) {
        width: calc((100% - var(--space-md)) / 2);
        grid-column: 1 / -1;
        justify-self: center;
    }

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

    .media-block--reverse .media-block__media {
        order: 2;
    }

    .media-block--reverse .media-block__body {
        order: 1;
    }

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

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

    .site-footer__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    }

    .site-footer__pay {
        grid-column: 1 / -1;
    }

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

    .footer-col:last-child {
        grid-column: auto;
    }
}

/* ============================================
   DESKTOP - Wide reference geometry and inline nav
   ============================================ */

@media (min-width: 1024px) {
    :root {
        --header-height: 96px;
    }

    .site-header__inner {
        width: min(100% - 3.5rem, 1480px);
    }

    .site-brand__mark {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.85rem;
    }

    .site-brand__name {
        font-size: 1.72rem;
    }

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

    .nav-toggle {
        display: none;
    }

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

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

    .primary-nav a {
        min-height: 48px;
        padding-inline: 0.45rem;
        font-size: 0.96rem;
        white-space: nowrap;
    }

    .primary-nav__list a:hover,
    .primary-nav__list a:focus-visible,
    .primary-nav__list a[aria-current="page"] {
        background: transparent;
        box-shadow: inset 0 -4px 0 var(--primary);
    }

    .header-actions {
        display: flex;
        flex: 0 0 auto;
    }

    .hero,
    .page-hero {
        min-height: 680px;
        padding-block: var(--space-xl);
    }

    .hero__inner,
    .page-hero__inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: var(--space-lg);
    }

    .hero__visual,
    .page-hero__visual {
        min-height: 620px;
    }

    .hero__visual img,
    .page-hero__visual img,
    [data-visual-role="hero-foreground"] {
        transform: scale(1.08);
        transform-origin: center bottom;
    }

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

    .feature-grid,
    .category-grid,
    .offer-grid,
    .proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid > :last-child:nth-child(3n + 1) {
        width: calc((100% - var(--space-md) - var(--space-md)) / 3);
        grid-column: 1 / -1;
        justify-self: center;
    }

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

    .step-list__item {
        padding: 4.25rem var(--space-md) var(--space-lg);
    }

    .step-list__item::before {
        top: var(--space-md);
        left: var(--space-md);
    }

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

    .site-footer__inner {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .site-footer__pay {
        grid-column: auto;
    }
}

@media (min-width: 1280px) {
    .site-brand__mark {
        width: 3.1rem;
        height: 3.1rem;
        font-size: 2.2rem;
    }

    .site-brand__name {
        font-size: 2.1rem;
    }

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

    .primary-nav__list {
        gap: var(--space-xs);
    }

    .primary-nav a {
        padding-inline: 0.85rem;
        font-size: 1.16rem;
    }

    .hero__title,
    .page-hero__title {
        font-size: clamp(4rem, calc(3vw + 1.3rem), 5.3rem);
    }
}

/* ============================================
   SMALL MOBILE - Preserve header composition at 320px
   ============================================ */

@media (max-width: 374px) {
    .site-brand__mark {
        width: 2.15rem;
        height: 2.15rem;
        font-size: 1.55rem;
    }

    .site-brand__name {
        font-size: 1.45rem;
    }

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

    .nav-toggle {
        grid-template-columns: 1.35rem;
        padding-inline: 0.7rem;
    }

    .nav-toggle__label {
        display: none;
    }

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

    .btn {
        width: 100%;
    }

    .hero,
    .page-hero {
        min-height: 620px;
    }

    .stat-block {
        min-height: 175px;
    }
}

/* ============================================
   REDUCED MOTION - Keep all content immediately visible
   ============================================ */

@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 .reveal-target:not(.is-revealed),
    .js-reveal .reveal-target {
        opacity: 1;
        transform: none;
    }
}
