/*
 * Zoccer Casino Design System
 * Fixed dark theme inspired by a neon-lit night sports bar.
 */

:root {
    color-scheme: dark;
    --background: #0b0d0c;
    --background-elevated: #111512;
    --surface: #151a17;
    --surface-2: #1b211d;
    --surface-3: #222a25;
    --card: #141916;
    --card-strong: #1b211d;
    --foreground: #f5f7f5;
    --foreground-strong: #ffffff;
    --muted: #252c27;
    --muted-foreground: #b7c0ba;
    --subtle: #8e9992;
    --primary: #cdfa3f;
    --primary-hover: #ddff6c;
    --primary-foreground: #0a0c0a;
    --secondary: #2fe36b;
    --secondary-hover: #58ed87;
    --secondary-foreground: #071108;
    --accent: #ff8a2a;
    --accent-foreground: #15100a;
    --destructive: #a91f2d;
    --destructive-foreground: #ffffff;
    --border: #37413a;
    --border-strong: #5d6a62;
    --focus: #cdfa3f;
    --lime-glow: rgba(205, 250, 63, 0.22);
    --green-glow: rgba(47, 227, 107, 0.18);
    --orange-glow: rgba(255, 138, 42, 0.14);
    --overlay: rgba(5, 8, 6, 0.74);
    --shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.34);
    --shadow-glow: 0 0 0 1px rgba(205, 250, 63, 0.35), 0 0 28px var(--lime-glow);
    --gradient-lime: linear-gradient(100deg, var(--secondary) 0%, var(--primary) 58%, #efff52 100%);
    --gradient-dark: linear-gradient(145deg, #171c19 0%, #0b0e0c 100%);
    --gradient-stadium: radial-gradient(circle at 18% 0%, rgba(47, 227, 107, 0.12), transparent 34%), radial-gradient(circle at 86% 12%, rgba(255, 138, 42, 0.1), transparent 30%), #0b0d0c;
    --radius-xs: 0.45rem;
    --radius-sm: 0.7rem;
    --radius-md: 1rem;
    --radius-lg: 1.35rem;
    --radius-xl: 1.8rem;
    --space-2xs: 0.35rem;
    --space-xs: 0.55rem;
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.4rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --container: 78rem;
    --content: 48rem;
    --header-height: 4.5rem;
    --font-display: "Barlow", sans-serif;
    --font-body: "Inter", sans-serif;
    --transition: 180ms ease;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Predictable rendering
   ============================================ */

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

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

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: hidden;
    background: var(--gradient-stadium);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
}

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

[class*="grid"] > *,
[class*="flex"] > *,
.card,
.info-card,
.feature-card,
.game-card,
.offer-card {
    min-width: 0;
}

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

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

section,
.hero,
.cta-band,
.site-footer {
    overflow: clip;
}

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

/* ============================================
   ACCESSIBILITY - Focus, skip link and hidden text
   ============================================ */

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    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);
}

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

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

/* ============================================
   TYPOGRAPHY - Strong condensed sport headlines
   ============================================ */

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

h1 {
    margin-bottom: var(--space-lg);
    font-size: clamp(2.35rem, calc(7vw + 0.5rem), 4.7rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: var(--space-lg);
    font-size: clamp(1.85rem, calc(3vw + 0.8rem), 3rem);
    font-weight: 750;
    letter-spacing: -0.025em;
}

h3 {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.25rem, calc(1vw + 1rem), 1.65rem);
    font-weight: 700;
}

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

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

.lead {
    color: var(--foreground);
    font-size: clamp(1.08rem, calc(0.5vw + 1rem), 1.3rem);
    line-height: 1.62;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 0.16rem;
    border-radius: 999px;
    background: var(--gradient-lime);
    box-shadow: 0 0 14px var(--green-glow);
    content: "";
}

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

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article) a:not([class]) {
    color: var(--primary);
    font-weight: 650;
    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);
}

/* ============================================
   LAYOUT PRIMITIVES - Shared page rhythm
   ============================================ */

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

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

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

.section--elevated {
    border-block: 1px solid rgba(205, 250, 63, 0.12);
    background: linear-gradient(180deg, rgba(27, 33, 29, 0.78), rgba(11, 13, 12, 0.86));
}

.section--pitch::before,
.site-footer::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(205, 250, 63, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(205, 250, 63, 0.055) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
    content: "";
}

.section-heading {
    max-width: 56rem;
    margin-bottom: var(--space-xl);
}

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

.section-heading p {
    color: var(--muted-foreground);
    font-size: 1.05rem;
}

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

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

.prose p,
.seo-text p {
    color: var(--muted-foreground);
}

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

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

.horizontal-scroll {
    display: flex;
    gap: var(--space-md);
    max-width: 100%;
    padding: 0.2rem 0.1rem var(--space-sm);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--primary) var(--muted);
}

.horizontal-scroll > * {
    flex: 0 0 min(82vw, 20rem);
    scroll-snap-align: start;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary)) 1;
    background: var(--background);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
    min-height: var(--header-height);
}

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

.site-brand__mark {
    flex: 0 0 2rem;
    filter: drop-shadow(0 0 9px var(--green-glow));
}

.site-brand__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 1.03rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.86;
    white-space: nowrap;
}

.site-brand__text strong,
.site-brand__text em {
    font-style: normal;
}

.site-brand__text em {
    color: var(--secondary);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.67rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    background: var(--surface);
}

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

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

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

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

.primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    max-width: 100vw;
    padding: var(--space-lg) max(1rem, env(safe-area-inset-right)) var(--space-xl) max(1rem, env(safe-area-inset-left));
    overflow-y: auto;
    background: var(--background);
}

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

.primary-nav__list,
.site-footer__links,
.licence-list,
.pay-row,
.trust-row {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

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

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    background: var(--surface-2);
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 0.38rem;
    align-items: center;
}

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

.btn {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.78rem 1.15rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn--lime {
    background: var(--gradient-lime);
    color: var(--primary-foreground);
    box-shadow: 0 0 24px var(--lime-glow);
}

.btn--lime:hover {
    box-shadow: 0 8px 32px rgba(205, 250, 63, 0.32);
}

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

.btn--ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

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

.btn--sm {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
}

.btn--md {
    min-height: 3.1rem;
}

.btn--lg {
    min-height: 3.5rem;
    padding: 0.95rem 1.5rem;
    font-size: 1.1rem;
}

.cta-button-wrap {
    display: inline-flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.cta-button-note,
.cta-band__note {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS & INNER HEROES - Compact page openings
   ============================================ */

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

.breadcrumbs ol {
    display: flex;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

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

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

.page-hero {
    position: relative;
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(205, 250, 63, 0.16);
    background: radial-gradient(circle at 82% 18%, var(--orange-glow), transparent 34%), radial-gradient(circle at 20% 5%, var(--green-glow), transparent 42%), var(--background);
}

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

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

.page-hero__content h1 {
    max-width: 17ch;
}

.page-hero__content .lead {
    color: var(--muted-foreground);
}

.page-hero__media {
    position: relative;
    margin: 0;
    border: 1px solid rgba(205, 250, 63, 0.62);
    border-radius: var(--radius-lg);
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-glow);
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HERO - Integrated sports-bar composition
   ============================================ */

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    padding: var(--space-xl) 0 var(--space-2xl);
    background: radial-gradient(circle at 80% 18%, var(--orange-glow), transparent 34%), radial-gradient(circle at 20% 20%, var(--green-glow), transparent 42%), var(--background);
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    background: var(--gradient-lime);
    box-shadow: 0 0 24px var(--lime-glow);
    content: "";
}

.hero::before {
    top: 7%;
    left: 0.75rem;
    width: 0.35rem;
    height: 58%;
}

.hero::after {
    right: 0.75rem;
    bottom: 8%;
    width: 0.35rem;
    height: 48%;
}

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

.hero__media {
    position: relative;
    min-height: 20rem;
    margin: -2rem -1rem 1.25rem;
    overflow: clip;
    background: radial-gradient(circle at 60% 30%, rgba(47, 227, 107, 0.22), transparent 34%), linear-gradient(180deg, rgba(11, 13, 12, 0.05), var(--background));
}

.hero__media img[data-visual-role="hero-foreground"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 100%;
}

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

.hero__title {
    max-width: 15ch;
}

.hero__copy {
    max-width: 42rem;
    color: var(--muted-foreground);
    font-size: 1.05rem;
}

.hero__offer {
    display: inline-block;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(1.3rem, calc(2vw + 0.8rem), 2rem);
    font-weight: 800;
    line-height: 1.15;
}

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

/* ============================================
   CARDS - Neon-edged content containers
   ============================================ */

.card,
.info-card,
.feature-card,
.offer-card,
.review-card {
    position: relative;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(27, 33, 29, 0.96), rgba(13, 16, 14, 0.98));
    box-shadow: var(--shadow-sm);
}

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

.feature-card__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(205, 250, 63, 0.4);
    border-radius: 50%;
    place-items: center;
    background: rgba(205, 250, 63, 0.08);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
}

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

.feature-card__link {
    color: var(--primary);
    font-weight: 750;
    text-underline-offset: 0.2em;
}

.usp-tile {
    display: flex;
    min-height: 9.5rem;
    padding: var(--space-lg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    text-align: center;
}

.usp-tile__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, calc(4vw + 1rem), 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-shadow: 0 0 20px var(--lime-glow);
}

.usp-tile__prefix {
    display: block;
    color: var(--foreground);
    font-size: 0.42em;
    letter-spacing: 0;
}

.usp-tile__label {
    margin-top: var(--space-sm);
    color: var(--foreground);
    font-size: 0.95rem;
    font-weight: 650;
}

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

.offer-card__ribbon {
    align-self: flex-start;
    margin: calc(var(--space-lg) * -1) 0 var(--space-lg) calc(var(--space-lg) * -1);
    padding: 0.42rem 0.9rem;
    border-radius: var(--radius-lg) 0 var(--radius-md) 0;
    background: var(--gradient-lime);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 800;
}

.offer-card__headline {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.offer-card__value {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(3vw + 1rem), 3.8rem);
    font-weight: 800;
    line-height: 1;
}

.offer-card__subline {
    color: var(--foreground);
    font-weight: 650;
}

.offer-card__points {
    padding-left: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--muted-foreground);
}

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

.offer-card__cta {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   GAME CARDS & MEDIA - Framed editorial imagery
   ============================================ */

.game-card {
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.game-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted);
}

.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

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

.game-card__badge,
.game-card__rtp {
    display: inline-flex;
    min-height: 1.8rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    align-items: center;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.8rem;
    font-weight: 800;
}

.game-card__badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
}

.game-card__body {
    padding: var(--space-md);
}

.game-card__title {
    margin-bottom: 0.35rem;
}

.game-card__meta {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

.media-figure {
    margin: 0;
}

.media-figure img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.media-figure--glow img {
    border: 1px solid rgba(205, 250, 63, 0.72);
    box-shadow: 0 0 30px var(--green-glow);
}

.media-figure--plain img {
    border-radius: 0;
}

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

/* ============================================
   TABLES - Dense mobile-scroll comparisons
   ============================================ */

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

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

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

.data-table caption {
    padding: 1rem;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 1.15rem;
    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 {
    background: linear-gradient(90deg, rgba(47, 227, 107, 0.2), rgba(205, 250, 63, 0.2));
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 750;
}

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

.data-table tbody tr:hover > * {
    background: var(--surface-2);
}

.data-table .is-highlight {
    border-inline: 1px solid rgba(205, 250, 63, 0.32);
    background: rgba(205, 250, 63, 0.08);
}

/* ============================================
   CONTENT CALLOUTS - Summary, notes and quotations
   ============================================ */

.summary-box,
.callout,
.stat-highlight,
.pull-quote {
    margin-block: var(--space-lg);
    border-radius: var(--radius-md);
}

.summary-box {
    padding: var(--space-lg);
    border: 1px solid rgba(205, 250, 63, 0.48);
    background: linear-gradient(135deg, rgba(47, 227, 107, 0.1), rgba(205, 250, 63, 0.04));
}

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

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

.callout {
    padding: var(--space-lg);
    border-left: 0.3rem solid var(--secondary);
    background: var(--surface-2);
}

.callout--warning {
    border-left-color: var(--accent);
    background: rgba(255, 138, 42, 0.08);
}

.callout--success {
    border-left-color: var(--primary);
    background: rgba(205, 250, 63, 0.07);
}

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

.stat-highlight {
    display: flex;
    padding: var(--space-lg);
    border: 1px solid var(--primary);
    flex-direction: column;
    background: var(--gradient-dark);
    box-shadow: var(--shadow-glow);
}

.stat-highlight__value {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, calc(4vw + 1rem), 4.5rem);
    font-weight: 800;
    line-height: 0.95;
}

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

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

.pull-quote {
    padding: var(--space-xl) var(--space-lg);
    border-block: 1px solid var(--primary);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, calc(1.5vw + 1rem), 2.3rem);
    font-weight: 650;
    line-height: 1.28;
}

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

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

/* ============================================
   STEPS - Numbered conversion process
   ============================================ */

.steps-list {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: steps;
}

.steps-list__item {
    position: relative;
    min-height: 4.5rem;
    padding: 0 0 var(--space-xl) 4.4rem;
    counter-increment: steps;
}

.steps-list__item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid var(--primary);
    border-radius: 50%;
    place-items: center;
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 0 18px var(--lime-glow);
    content: counter(steps);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
}

.steps-list__item:not(:last-child)::after {
    position: absolute;
    top: 3.3rem;
    bottom: 0.15rem;
    left: 1.57rem;
    width: 1px;
    background: linear-gradient(var(--primary), transparent);
    content: "";
}

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

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

/* ============================================
   FAQ DISCLOSURES - Native accessible accordions
   ============================================ */

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

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

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 22px rgba(205, 250, 63, 0.1);
}

.faq-item summary {
    display: flex;
    min-height: 3.7rem;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary svg {
    flex: 0 0 1.25rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

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

.faq-item[open] .faq-item__body {
    animation: faq-in 180ms ease-out;
}

@keyframes faq-in {
    from {
        opacity: 0.72;
        transform: translateY(-0.35rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   PAYMENTS & TRUST - Muted reassurance marks
   ============================================ */

.pay-block__title {
    color: var(--foreground-strong);
    font-weight: 700;
}

.pay-row,
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

.pay-chip {
    display: inline-flex;
    min-height: 2.65rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.trust-row {
    justify-content: center;
}

.trust-badge {
    display: flex;
    min-height: 3.5rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    align-items: center;
    gap: var(--space-xs);
    background: var(--surface);
    color: var(--muted-foreground);
}

.trust-badge__mark {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.trust-badge__text {
    font-size: 0.88rem;
    font-weight: 650;
}

.licence-badge,
.badge-18 {
    display: inline-flex;
    min-height: 2rem;
    padding: 0.25rem 0.55rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    align-items: center;
    color: var(--foreground);
    font-size: 0.82rem;
    font-weight: 750;
}

.badge-18 {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   SOCIAL PROOF - Evidence-ready review cards
   ============================================ */

.review-card__rating {
    display: flex;
    margin-bottom: var(--space-sm);
    gap: 0.18rem;
    color: var(--primary);
}

.review-card__quote {
    color: var(--foreground);
    font-size: 1.03rem;
}

.review-card__author {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 650;
}

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

.cta-band {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(205, 250, 63, 0.16), transparent 58%), var(--surface);
    box-shadow: 0 0 34px var(--green-glow);
    text-align: center;
}

.cta-band::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(205, 250, 63, 0.08), transparent);
    content: "";
}

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

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

.cta-band__note {
    margin: var(--space-sm) auto 0;
}

/* ============================================
   SITEMAP - Neutral navigational list
   ============================================ */

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

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

.sitemap-entry__link {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 750;
    text-underline-offset: 0.2em;
}

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

/* ============================================
   FOOTER - Licence, payments and responsibility
   ============================================ */

.site-footer {
    position: relative;
    z-index: 0;
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid rgba(205, 250, 63, 0.26);
    background: var(--background);
}

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

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

.site-footer__col p,
.site-footer__note {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-footer__title {
    margin-bottom: var(--space-md);
    color: var(--foreground-strong);
    font-size: 1.1rem;
}

.site-footer__links {
    display: grid;
    gap: var(--space-xs);
}

.site-footer__links a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-foreground);
    text-decoration: underline;
    text-decoration-color: var(--border-strong);
    text-underline-offset: 0.2em;
}

.site-footer__links a:hover {
    color: var(--primary);
}

.pay-row--footer .pay-chip {
    min-height: 2.25rem;
    padding: 0.45rem 0.6rem;
    color: var(--muted-foreground);
    filter: grayscale(1);
}

.licence-list {
    display: grid;
    gap: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

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

.site-footer__bottom {
    display: flex;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    flex-direction: column;
    gap: var(--space-xs);
    color: var(--subtle);
    font-size: 0.82rem;
}

.site-footer__bottom p {
    margin: 0;
}

/* ============================================
   PROGRESSIVE MOTION - JS-enhanced but never hidden
   ============================================ */

[data-reveal] {
    opacity: 1;
    transform: none;
}

/* ============================================
   SMALL MOBILE - Preserve 320px header integrity
   ============================================ */

@media (max-width: 359px) {
    .site-header__inner {
        width: min(100% - 1rem, var(--container));
        grid-template-columns: 2.75rem minmax(0, 1fr) auto;
        gap: 0.35rem;
    }

    .site-brand__mark {
        flex-basis: 1.75rem;
        width: 1.75rem;
    }

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

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

    .btn--sm {
        padding-inline: 0.62rem;
        font-size: 0.82rem;
    }
}

/* ============================================
   TABLET - Two-column component layouts
   ============================================ */

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

    .container,
    .section__inner,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom,
    .hero__inner {
        width: min(100% - 3rem, var(--container));
    }

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

    .site-header__inner {
        grid-template-columns: 3rem minmax(0, 1fr) auto;
        gap: var(--space-sm);
    }

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

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

    .btn--sm {
        padding-inline: 1rem;
        font-size: 0.95rem;
    }

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

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

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

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

    .page-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: var(--space-2xl);
    }

    .split-layout--wide-media {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    }

    .hero {
        min-height: auto;
        padding-block: var(--space-2xl) var(--space-3xl);
    }

    .hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }

    .hero__media {
        grid-column: 2;
        grid-row: 1;
        min-height: 32rem;
        margin: 0 -1.5rem 0 -4rem;
    }

    .hero__content {
        grid-column: 1;
        grid-row: 1;
    }

    .cta-band {
        padding: var(--space-2xl);
    }

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

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   DESKTOP - Wide header, hero and dense grids
   ============================================ */

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

    .site-header {
        background: rgba(11, 13, 12, 0.96);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .site-header__inner {
        display: flex;
        gap: var(--space-xl);
    }

    .site-brand {
        margin-right: auto;
    }

    .site-brand__mark {
        flex-basis: 2.65rem;
        width: 2.65rem;
    }

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

    .nav-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: block;
        max-width: none;
        padding: 0;
        overflow: visible;
        background: transparent;
    }

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

    .primary-nav a {
        min-height: 2.8rem;
        padding-inline: 0.9rem;
        font-size: 1rem;
    }

    .hero {
        min-height: min(48rem, calc(100svh - var(--header-height)));
        display: grid;
        align-items: center;
        padding-block: var(--space-xl);
    }

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

    .hero__media {
        min-height: 41rem;
        margin: -2rem -5rem -2rem -7rem;
    }

    .hero__media img[data-visual-role="hero-foreground"] {
        object-position: 58% 100%;
    }

    .hero__copy {
        font-size: 1.15rem;
    }

    .hero__actions .btn {
        min-width: 15rem;
    }

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

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

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

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

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

/* ============================================
   LARGE DESKTOP - Controlled max-width breathing room
   ============================================ */

@media (min-width: 1280px) {
    .section {
        padding-block: 5.5rem;
    }

    .hero__media {
        margin-right: -3rem;
    }
}

/* ============================================
   REDUCED MOTION - No movement or smooth scrolling
   ============================================ */

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

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
