/*
 * ZOCCER CASINO DESIGN SYSTEM
 * Fixed dark arena theme with stadium green, electric lime and championship gold.
 */

:root {
    color-scheme: dark;
    --background: #070a08;
    --background-elevated: #0d110f;
    --surface: #141917;
    --surface-2: #1b211e;
    --surface-3: #242b27;
    --foreground: #f4f7f4;
    --muted: #202622;
    --muted-foreground: #b7c0ba;
    --primary: #b8ff22;
    --primary-hover: #cdfd55;
    --primary-foreground: #071000;
    --secondary: #146c3c;
    --secondary-foreground: #f7faf7;
    --accent: #e9bd50;
    --accent-foreground: #171006;
    --destructive: #c94141;
    --destructive-foreground: #f7faf7;
    --border: #354038;
    --border-bright: #7b9b2a;
    --focus: #d8ff71;
    --pitch: #104a2b;
    --pitch-light: #1a693d;
    --gold: #e9bd50;
    --gold-soft: #ffd979;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.48);
    --glow: 0 0 30px rgba(184, 255, 34, 0.18);
    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --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;
    --container: 1180px;
    --header-height: 72px;
    --transition: 180ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY
   Predictable sizing, readable media and safe long content
   ============================================ */

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
    background: var(--background);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(33, 105, 62, 0.17), transparent 34rem),
        linear-gradient(180deg, #090c0a 0%, var(--background) 28rem);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    cursor: pointer;
}

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

a[href^="http"],
code {
    word-break: 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 {
    position: relative;
    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.08em;
    text-underline-offset: 0.18em;
}

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

/* ============================================
   TYPOGRAPHY
   Condensed stadium headlines paired with highly legible body copy
   ============================================ */

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;
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    margin-bottom: var(--space-lg);
    font-size: clamp(2.45rem, calc(9vw + 0.4rem), 4.5rem);
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2rem, calc(5vw + 0.4rem), 3.55rem);
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

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

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

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

.lead {
    color: var(--foreground);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
    line-height: 1.65;
}

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

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

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

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

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

/* ============================================
   LAYOUT PRIMITIVES
   Shared containers, section spacing and balanced responsive grids
   ============================================ */

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

.page-section {
    padding-block: clamp(3.5rem, 9vw, 7rem);
}

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

.page-section--surface {
    background:
        linear-gradient(135deg, rgba(184, 255, 34, 0.035), transparent 35%),
        var(--background-elevated);
}

.page-section--pitch {
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 9%, transparent 9% 18%),
        linear-gradient(180deg, #0d281a, #09150f);
}

.content-grid,
.card-grid,
.tile-grid,
.offer-grid,
.split-grid,
.stats-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

.content-grid--2,
.split-grid {
    align-items: center;
}

.prose,
.seo-text {
    max-width: 78ch;
}

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

.section-heading {
    max-width: 920px;
    margin-bottom: clamp(1.75rem, 5vw, 3rem);
}

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

.section-heading__kicker {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.section-heading__lead {
    margin-inline: auto;
    color: var(--muted-foreground);
    font-size: 1.08rem;
}

/* ============================================
   HEADER & NAVIGATION
   Opaque fixed mobile drawer and inline desktop navigation
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(184, 255, 34, 0.12);
    background: #090c0a;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: min(calc(100% - 1rem), 1440px);
    min-height: var(--header-height);
    margin-inline: auto;
}

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

.site-brand[href]:hover .site-brand__mark {
    color: var(--primary-hover);
    transform: rotate(-4deg) scale(1.04);
}

.site-brand__mark {
    flex: 0 0 34px;
    width: 34px;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(184, 255, 34, 0.3));
    transition: transform var(--transition), color var(--transition);
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 0.94;
    text-transform: uppercase;
}

.site-brand__text strong {
    overflow: hidden;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-brand__text span {
    color: var(--primary);
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: none;
    padding: var(--space-lg);
    overflow-y: auto;
    background: var(--background);
}

.primary-nav__list,
.footer-links,
.pay-chips,
.legal-badges {
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

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

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.4rem;
}

.header-actions .btn--primary {
    order: 1;
}

.header-actions__login {
    order: 2;
    display: inline-flex !important;
}

.nav-toggle {
    position: relative;
    order: 3;
    z-index: 1001;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.nav-toggle span {
    width: 22px;
    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(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);
}

/* ============================================
   BUTTONS & LINKS
   High-contrast lime conversion controls with stadium typography
   ============================================ */

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.78rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn--primary {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 10px 26px rgba(184, 255, 34, 0.13);
    color: var(--primary-foreground);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    border-color: var(--primary-hover);
    background: var(--primary-hover);
    color: var(--primary-foreground);
    box-shadow: var(--glow);
}

.btn--outline {
    border-color: var(--border-bright);
    background: transparent;
    color: var(--foreground);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    border-color: var(--primary);
    background: rgba(184, 255, 34, 0.08);
    color: var(--primary);
}

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

.btn--sm {
    min-height: 44px;
    padding: 0.68rem 0.85rem;
    font-size: 0.9rem;
}

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

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

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    color: var(--primary);
    font-weight: 800;
    text-underline-offset: 0.2em;
}

.card__link::after {
    content: "→";
}

/* ============================================
   HERO SYSTEM
   Integrated homepage stadium artwork plus compact framed subpage heroes
   ============================================ */

.page-hero {
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 85% 20%, rgba(184, 255, 34, 0.12), transparent 22rem),
        linear-gradient(180deg, var(--background-elevated), var(--background));
}

.page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
    padding-block: clamp(3rem, 8vw, 6rem);
}

.page-hero__content {
    min-width: 0;
}

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

.page-hero__note {
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.page-hero__media {
    min-width: 0;
    margin: 0;
}

.page-hero__media img {
    width: 100%;
    aspect-ratio: 6 / 5;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero {
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    background:
        linear-gradient(90deg, rgba(4, 7, 5, 0.98) 0%, rgba(4, 7, 5, 0.92) 56%, rgba(4, 7, 5, 0.38) 100%),
        radial-gradient(circle at 82% 30%, rgba(233, 189, 80, 0.22), transparent 20rem),
        linear-gradient(180deg, #111a24 0 48%, #0e3720 49% 100%);
}

.hero::before {
    position: absolute;
    inset: 45% -8% -20%;
    z-index: -2;
    content: "";
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.35) 50%, transparent 50.2%),
        radial-gradient(ellipse at center, transparent 0 17%, rgba(255,255,255,.28) 17.3% 17.7%, transparent 18%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 8%, transparent 8% 16%),
        linear-gradient(180deg, var(--pitch-light), var(--pitch));
    transform: perspective(650px) rotateX(58deg);
    transform-origin: top;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        radial-gradient(circle at 8% 14%, rgba(255,255,255,.28) 0 2px, transparent 3px),
        radial-gradient(circle at 92% 12%, rgba(255,255,255,.34) 0 2px, transparent 3px),
        linear-gradient(180deg, transparent 65%, rgba(0,0,0,.68));
    background-size: 18px 18px, 20px 20px, auto;
    opacity: 0.5;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    width: min(calc(100% - 2rem), 1280px);
    min-height: inherit;
    margin-inline: auto;
    padding-block: 3rem 2rem;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__content p {
    color: #d7dfda;
    font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.hero__art {
    position: relative;
    z-index: 1;
    align-self: end;
    min-height: 340px;
    margin: -2rem -1rem -2rem;
    pointer-events: none;
}

.hero__art img[data-visual-role="hero-foreground"] {
    position: absolute;
    right: -8%;
    bottom: 0;
    width: min(92vw, 620px);
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.55));
}

.hero__stats {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 2rem), 1180px);
    margin: -1.5rem auto 0;
}

/* ============================================
   CARDS - Content containers
   .card is the neutral raised surface; feature types add accent treatment
   ============================================ */

.card,
.info-card,
.offer-card,
.tile,
.summary-box,
.testimonial-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, rgba(255,255,255,.025), transparent 45%), var(--surface);
    box-shadow: var(--shadow-sm);
}

.card,
.offer-card,
.tile {
    overflow: hidden;
}

.card {
    display: flex;
    flex-direction: column;
}

.card--featured,
.offer-card--featured {
    border-color: var(--primary);
    box-shadow: var(--glow), var(--shadow-sm);
}

.card__media,
.offer-card__media,
.tile__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--surface-2);
}

.card__body,
.offer-card__body,
.tile__body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: var(--space-lg);
}

.card__badge {
    align-self: flex-start;
    margin-bottom: var(--space-md);
    padding: 0.28rem 0.6rem;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-pill);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card__text,
.tile__text,
.offer-card__subline {
    color: var(--muted-foreground);
}

.tile {
    position: relative;
    min-height: 280px;
}

.tile__media {
    height: 100%;
    min-height: 280px;
}

.tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0,0,0,.04) 18%, rgba(0,0,0,.88) 100%);
}

.tile__body {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
}

.tile__text {
    color: #e1e6e2;
}

.offer-card {
    border-color: rgba(184,255,34,.38);
}

.offer-card__figure {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 9vw, 4.6rem);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.offer-card__note {
    margin: var(--space-md) 0 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

.check-list li {
    position: relative;
    padding-left: 1.55rem;
}

.check-list li::before {
    position: absolute;
    top: 0.18em;
    left: 0;
    color: var(--primary);
    content: "✓";
    font-weight: 900;
}

/* ============================================
   STATISTICS
   Scoreboard-style numbers, strips and individual highlights
   ============================================ */

.stat-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    background: var(--border-bright);
    box-shadow: var(--shadow-lg);
    list-style: none;
}

.stat-block {
    display: flex;
    min-width: 0;
    min-height: 128px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: rgba(13, 17, 15, 0.97);
    text-align: center;
}

.stat-block__number,
.stat-highlight__number {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 10vw, 5rem);
    font-weight: 700;
    line-height: 1;
}

.stat-block__label,
.stat-highlight__label {
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.stat-block__note,
.stat-highlight__source {
    color: var(--muted-foreground);
    font-size: 0.82rem;
}

.stat-highlight {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: var(--space-lg);
    border-left: 4px solid var(--primary);
    background: var(--surface);
}

/* ============================================
   TABLES
   Dense, trustworthy comparison and payment data presentation
   ============================================ */

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

.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.data-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.data-table caption {
    padding: var(--space-md) var(--space-lg);
    color: var(--muted-foreground);
    font-weight: 700;
    text-align: left;
}

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

.data-table thead th {
    position: sticky;
    top: 0;
    background: var(--surface-3);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.data-table tbody th {
    color: var(--foreground);
}

.data-table tbody tr:last-child > * {
    border-bottom: 0;
}

.data-table tbody tr:hover > * {
    background: rgba(184, 255, 34, 0.035);
}

.data-table .is-featured > *,
.data-table tr.is-featured > * {
    background: rgba(184, 255, 34, 0.1);
    box-shadow: inset 0 1px var(--border-bright), inset 0 -1px var(--border-bright);
}

.data-table tr.is-featured > :first-child {
    color: var(--primary);
}

.comparison-table .is-recommended {
    border-inline: 1px solid rgba(184, 255, 34, 0.48);
    background: rgba(184, 255, 34, 0.11);
    color: var(--foreground);
}

.comparison-table thead .is-recommended {
    color: var(--primary);
    box-shadow: inset 0 3px var(--primary);
}

.comparison-table tbody tr:last-child .is-recommended {
    box-shadow: inset 0 -3px var(--primary);
}

/* ============================================
   FAQ & DISCLOSURES
   Native accessible accordions with a visible lime status icon
   ============================================ */

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

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

.faq__item[open] {
    border-color: var(--border-bright);
    background: var(--surface-2);
}

.faq__item summary {
    position: relative;
    min-height: 58px;
    padding: 1rem 3.25rem 1rem 1rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    list-style: none;
    cursor: pointer;
}

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

.faq__item summary::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    content: "";
    transform: translateY(-65%) rotate(45deg);
    transition: transform var(--transition);
}

.faq__item[open] summary {
    color: var(--primary);
}

.faq__item[open] summary::after {
    transform: translateY(-35%) rotate(225deg);
}

.faq__answer {
    padding: 0 1rem 1rem;
    color: var(--muted-foreground);
}

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

/* ============================================
   ENGAGEMENT PATTERNS
   Citation-friendly summaries, notes, quotes and step explanations
   ============================================ */

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

.tldr {
    border: 1px solid var(--border-bright);
    box-shadow: inset 4px 0 var(--primary);
}

.tldr__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tldr__list {
    display: grid;
    gap: var(--space-xs);
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.callout {
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
}

.callout--warning {
    border-left-color: var(--gold);
    background: linear-gradient(90deg, rgba(233, 189, 80, 0.09), transparent 70%), var(--surface);
}

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

.callout__text:last-child {
    margin-bottom: 0;
}

.pull-quote {
    max-width: 900px;
    padding: clamp(1.5rem, 5vw, 3rem);
    margin-inline: auto;
    border-block: 1px solid var(--border-bright);
    color: var(--foreground);
    text-align: center;
}

.pull-quote p {
    margin-inline: auto;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.25;
}

.pull-quote p::before {
    color: var(--primary);
    content: "“";
}

.pull-quote p::after {
    color: var(--primary);
    content: "”";
}

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

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

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

.step-list__item::before {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    content: counter(zoccer-step);
    font-family: var(--font-display);
    font-weight: 700;
}

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

/* ============================================
   TRUST, PAYMENTS & SOCIAL PROOF
   Compact verification rows and reusable testimonial cards
   ============================================ */

.trust-badges,
.legal-badges,
.pay-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.trust-badges {
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-badge,
.legal-badge,
.pay-chip {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface-2);
}

.trust-badge {
    display: flex;
    min-height: 60px;
    flex: 1 1 150px;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.trust-badge__label {
    color: var(--foreground);
    font-weight: 800;
}

.trust-badge__sub {
    color: var(--muted-foreground);
    font-size: 0.82rem;
}

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

.testimonial-card {
    min-width: 0;
    padding: var(--space-lg);
}

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

.testimonial-card__name {
    color: var(--muted-foreground);
    font-weight: 700;
}

/* ============================================
   MEDIA & DECORATIVE CONTENT
   Framed editorial media stays distinct from integrated hero foreground art
   ============================================ */

.media-figure {
    min-width: 0;
    margin-bottom: 0;
}

.media-figure img {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
}

.media-figure figcaption {
    margin-top: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   CTA BAND
   Full-width conversion band with lime scoreboard emphasis
   ============================================ */

.cta-band {
    border-block: 1px solid rgba(184,255,34,.3);
    background:
        linear-gradient(90deg, rgba(184,255,34,.12), transparent 30% 70%, rgba(184,255,34,.12)),
        var(--surface);
}

.cta-band__inner {
    width: min(calc(100% - 2rem), 920px);
    margin-inline: auto;
    padding-block: clamp(3rem, 8vw, 5rem);
    text-align: center;
}

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

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

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

/* ============================================
   BREADCRUMBS
   Compact orientation for subpages without creating a home backlink in content
   ============================================ */

.breadcrumbs {
    width: min(calc(100% - 2rem), var(--container));
    margin: var(--space-lg) auto 0;
    overflow-x: auto;
}

.breadcrumbs ol {
    display: flex;
    width: max-content;
    min-width: 100%;
    align-items: center;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    list-style: none;
}

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

.breadcrumbs li:not(:last-child)::after {
    color: var(--border-bright);
    content: "/";
}

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

/* ============================================
   FOOTER
   Navigation, payment chips, licensing and responsible-play disclosures
   ============================================ */

.site-footer {
    border-top: 1px solid var(--border);
    background: #080b09;
}

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

.site-brand--footer {
    margin-bottom: var(--space-lg);
}

.footer-col--brand p {
    color: var(--muted-foreground);
}

.footer-col__title {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.2em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--primary);
    text-decoration-color: currentColor;
}

.pay-chip,
.legal-badge {
    padding: 0.4rem 0.7rem;
    color: #d8dfda;
    font-size: 0.82rem;
    font-weight: 700;
}

.legal-badge--age {
    border-color: var(--foreground);
    background: var(--foreground);
    color: var(--background);
}

.site-footer__legal {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
    padding-block: var(--space-xl);
    border-top: 1px solid var(--border);
}

.site-footer__legal p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.site-footer__copy {
    margin-bottom: 0;
}

/* ============================================
   FOCUS & MOTION
   Strong keyboard outlines and one-way progressive reveal enhancement
   ============================================ */

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

.js-reveal-ready [data-reveal="below-fold"]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(18px);
}

.js-reveal-ready [data-reveal="below-fold"] {
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-reveal-ready [data-reveal="below-fold"].is-revealed {
    opacity: 1;
    transform: none;
}

/* ============================================
   TABLET ENHANCEMENTS - 768px+
   More navigation room, balanced two-column content and footer
   ============================================ */

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

    .site-header__inner {
        width: min(calc(100% - 2rem), 1440px);
    }

    .site-brand__mark {
        flex-basis: 42px;
        width: 42px;
    }

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

    .site-brand__text strong {
        font-size: 1.5rem;
    }

    .header-actions__login {
        display: inline-flex !important;
    }

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

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

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

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

    .page-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
        padding-block: 4rem 2rem;
    }

    .hero__art {
        min-height: 600px;
        margin: -2rem -2rem -2rem -5rem;
    }

    .hero__art img[data-visual-role="hero-foreground"] {
        right: -7%;
        width: min(60vw, 720px);
    }

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

    .footer-col--brand {
        grid-column: span 2;
    }
}

/* ============================================
   DESKTOP COMPOSITION - 1024px+
   Reference-matched wide header, split hero and dense arena sections
   ============================================ */

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

    .site-header {
        background: rgba(7, 10, 8, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .site-header__inner {
        gap: var(--space-lg);
    }

    .primary-nav {
        display: flex;
        min-width: 0;
        flex: 1;
        align-items: center;
        justify-content: center;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: clamp(0.25rem, 1vw, 1rem);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .primary-nav__list::-webkit-scrollbar {
        display: none;
    }

    .primary-nav__list li {
        flex-shrink: 0;
    }

    .primary-nav__list a {
        min-height: 48px;
        padding: 0.65rem 0.8rem;
        border-bottom: 0;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 700;
        text-transform: none;
    }

    .nav-toggle {
        display: none;
    }

    .header-actions {
        gap: var(--space-sm);
    }

    .header-actions .btn--primary,
    .header-actions__login {
        order: 0;
    }

    .hero {
        min-height: min(900px, calc(100svh - var(--header-height)));
    }

    .hero__inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        width: min(calc(100% - 3rem), 1420px);
        padding-block: 5rem 3rem;
    }

    .hero__content {
        padding-left: clamp(0rem, 3vw, 3rem);
    }

    .hero__art {
        min-height: 760px;
        margin: -4rem -5rem -3rem -6rem;
    }

    .hero__art img[data-visual-role="hero-foreground"] {
        right: -2%;
        width: min(58vw, 880px);
    }

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

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

    .site-footer__inner {
        grid-template-columns: 1.4fr 0.75fr 0.75fr 1.1fr;
    }

    .footer-col--brand {
        grid-column: auto;
    }
}

/* ============================================
   LARGE DESKTOP - 1280px+
   Controlled maximum widths and stronger headline scale
   ============================================ */

@media (min-width: 1280px) {
    h1 {
        font-size: clamp(4.2rem, 5.3vw, 6.2rem);
    }

    .site-header__inner {
        width: min(calc(100% - 4rem), 1500px);
    }

    .primary-nav__list {
        gap: 1.35rem;
    }

    .primary-nav__list a {
        font-size: 1.08rem;
    }
}

/* ============================================
   SMALL MOBILE FIT - 479px and below
   Preserve brand, registration CTA and burger at the 320px minimum
   ============================================ */

@media (max-width: 479px) {
    .site-header__inner {
        width: calc(100% - 0.75rem);
    }

    .site-brand__mark {
        flex-basis: 28px;
        width: 28px;
    }

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

    .site-brand__text strong {
        font-size: 1rem;
    }

    .header-actions .btn {
        min-height: 42px;
        padding-inline: 0.45rem;
        font-size: 0.7rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .stat-block {
        min-height: 112px;
        padding: 0.75rem 0.5rem;
    }

    .stat-block__label {
        font-size: 0.8rem;
    }
}

/* ============================================
   REDUCED MOTION
   Keep all content visible and suppress decorative 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-ready [data-reveal="below-fold"]:not(.is-revealed),
    .js-reveal-ready [data-reveal="below-fold"] {
        opacity: 1;
        transform: none;
    }
}
