/*
 * V.Vegas Casino Design System
 * Fixed dark VIP-lounge theme with warm gold, neon red and electric-blue accents.
 */

:root {
    --background: #100d0f;
    --background-deep: #09080a;
    --surface: #18151b;
    --surface-elevated: #211b23;
    --surface-warm: #2a1c19;
    --card: #1c181e;
    --card-strong: #261f27;
    --foreground: #f8f4ed;
    --foreground-soft: #ddd6ce;
    --muted-foreground: #b9b1ab;
    --primary: #f2c665;
    --primary-bright: #ffe39a;
    --primary-deep: #a86b18;
    --primary-foreground: #17100a;
    --secondary: #8e111d;
    --secondary-foreground: #ffffff;
    --accent: #4cc9ff;
    --accent-foreground: #07141b;
    --destructive: #b72532;
    --destructive-foreground: #ffffff;
    --border: #705831;
    --border-soft: rgba(242, 198, 101, 0.28);
    --focus: #fff0b8;
    --success: #72d59b;
    --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.42);
    --glow-gold: 0 0 18px rgba(242, 198, 101, 0.38), 0 0 42px rgba(168, 107, 24, 0.2);
    --glow-red: 0 0 28px rgba(183, 37, 50, 0.25);
    --radius-sm: 0.55rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.35rem;
    --radius-pill: 999px;
    --space-2xs: 0.35rem;
    --space-xs: 0.6rem;
    --space-sm: 0.9rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
    --container: 76rem;
    --content: 49rem;
    --header-height: 4.75rem;
    --font-body: "Inter", sans-serif;
    --font-heading: "Poppins", sans-serif;
    --transition: 180ms ease;
}

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

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(142, 17, 29, 0.12), transparent 28rem),
        radial-gradient(circle at 85% 22%, rgba(76, 201, 255, 0.06), transparent 32rem),
        linear-gradient(180deg, var(--background-deep), var(--background) 22rem, #121014);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 100% 4px;
    pointer-events: none;
    content: "";
}

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

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

section {
    overflow: clip;
}

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

a[href^="http"],
a[href^="mailto:"] {
    word-break: break-word;
}

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

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

button {
    color: inherit;
}

ul, ol {
    margin-top: 0;
}

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

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

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

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

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

/* ============================================
   TYPOGRAPHY - Bold condensed-feeling headings, readable copy
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.75em;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, calc(5vw + 0.5rem), 4.8rem); }
h2 { font-size: clamp(1.75rem, calc(2.7vw + 0.55rem), 3rem); }
h3 { font-size: clamp(1.25rem, calc(1vw + 1rem), 1.65rem); }
h4 { font-size: 1.15rem; }

p {
    margin: 0 0 1.15rem;
}

.lead {
    max-width: 60ch;
    color: var(--foreground-soft);
    font-size: clamp(1.05rem, calc(0.5vw + 0.95rem), 1.28rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 1px;
    background: var(--primary);
    content: "";
}

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

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

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

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

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

/* ============================================
   LAYOUT - Shared containers and section rhythm
   ============================================ */

main {
    min-height: 60vh;
}

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

.prose,
.seo-text {
    max-width: var(--content);
    color: var(--foreground-soft);
}

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

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

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

.section--deep {
    background: linear-gradient(180deg, rgba(5, 5, 6, 0.72), rgba(15, 12, 14, 0.94));
    border-block: 1px solid var(--border-soft);
}

.section--warm {
    background:
        radial-gradient(circle at 75% 50%, rgba(168, 107, 24, 0.13), transparent 26rem),
        linear-gradient(180deg, rgba(42, 28, 25, 0.45), rgba(18, 15, 18, 0.82));
}

.section-head {
    max-width: 59rem;
    margin: 0 auto var(--space-xl);
}

.section-head--center {
    text-align: center;
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

.section-head__title {
    color: var(--primary);
    text-shadow: 0 0 22px rgba(242, 198, 101, 0.12);
}

.section-head__intro {
    max-width: 70ch;
    margin-inline: auto;
    color: var(--foreground-soft);
}

.section-head--left .section-head__intro {
    margin-left: 0;
}

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

.card-grid--games {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

/* ============================================
   HEADER & NAVIGATION - Opaque mobile drawer, inline desktop nav
   ============================================ */

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

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

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

.site-brand {
    display: inline-flex;
    flex-direction: column;
    flex: 0 1 auto;
    justify-content: center;
    min-width: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.9;
    text-decoration: none;
    text-shadow: 0 0 18px rgba(242, 198, 101, 0.2);
}

.site-brand__text {
    font-size: clamp(1.55rem, 7.5vw, 2.25rem);
    letter-spacing: -0.055em;
}

.site-brand__sub {
    margin-top: 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-align: right;
    text-transform: uppercase;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-grid;
    place-content: center;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    gap: 0.34rem;
    padding: 0;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
}

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

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

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

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

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    max-width: 100vw;
    overflow-y: auto;
    padding: 1.25rem;
    background: var(--background);
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-width: 36rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
    color: var(--primary-bright);
}

.primary-nav__cta-item {
    margin-top: 1rem;
}

.primary-nav__cta-item .btn {
    width: 100%;
}

/* ============================================
   BUTTONS - Gold conversion actions and quiet alternatives
   ============================================ */

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

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

.btn--primary {
    border-color: var(--primary-bright);
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright) 52%, var(--primary));
    color: var(--primary-foreground);
    box-shadow: var(--glow-gold);
}

.btn--primary:hover {
    box-shadow: 0 0 22px rgba(242, 198, 101, 0.52), 0 12px 34px rgba(0, 0, 0, 0.35);
}

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

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

.btn--outline:hover {
    background: rgba(242, 198, 101, 0.1);
}

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

.btn--lg {
    min-height: 3.4rem;
    padding: 0.95rem 1.65rem;
    font-size: clamp(1rem, calc(0.5vw + 0.95rem), 1.18rem);
}

/* ============================================
   HERO - Full-bleed editorial casino scene with integrated dark copy area
   ============================================ */

.hero {
    position: relative;
    min-height: clamp(40rem, 152vw, 48rem);
    isolation: isolate;
    border-bottom: 1px solid var(--border);
    background: var(--background-deep);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(5, 4, 6, 0.08) 10%, rgba(8, 7, 9, 0.86) 58%, var(--background-deep) 100%),
        linear-gradient(90deg, rgba(8, 7, 9, 0.25), transparent 75%);
    content: "";
}

.hero__inner {
    display: flex;
    align-items: flex-end;
    width: min(calc(100% - 2rem), var(--container));
    min-height: inherit;
    margin-inline: auto;
    padding-block: 3rem;
}

.hero__content {
    max-width: 48rem;
}

.hero__title {
    max-width: 15ch;
    color: var(--primary);
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.9), 0 0 24px rgba(242, 198, 101, 0.16);
}

.hero__lead {
    max-width: 61ch;
    color: var(--foreground);
    font-size: clamp(1.05rem, calc(0.7vw + 0.9rem), 1.28rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.hero__actions {
    margin-block: 1.35rem;
}

/* ============================================
   TRUST & LOGO ROWS - Compact capability signals
   ============================================ */

.badge-row,
.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.5rem;
    color: var(--foreground-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.badge__mark {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.logo-row-wrap {
    text-align: center;
}

.logo-row {
    justify-content: center;
    gap: 0.8rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
    color: var(--foreground-soft);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    filter: grayscale(1);
}

.logo-row--compact {
    justify-content: flex-start;
    gap: 0.45rem;
}

.logo-row--compact .logo-mark {
    min-height: 2.2rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.72rem;
}

.logo-row__caption {
    max-width: 60rem;
    margin: 1rem auto 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   OFFER PANEL - Premium split promotion container
   ============================================ */

.offer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--card-strong), var(--card));
    box-shadow: var(--shadow-md), inset 0 0 55px rgba(242, 198, 101, 0.035);
}

.offer-panel__media {
    min-height: 17rem;
    background: var(--background-deep);
}

.offer-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-panel__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: var(--space-lg);
}

.offer-panel__title {
    color: var(--primary);
}

.offer-panel__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.offer-fact {
    min-width: 0;
    padding: 0.7rem 0.4rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

.offer-fact:last-child {
    border-right: 0;
}

.offer-fact__value,
.offer-fact__label {
    display: block;
}

.offer-fact__value {
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, calc(1vw + 0.8rem), 1.6rem);
    font-weight: 700;
}

.offer-fact__label {
    color: var(--foreground-soft);
    font-size: 0.82rem;
}

.offer-panel__text {
    color: var(--foreground-soft);
}

.offer-panel__note {
    margin: 0.85rem 0 0;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

/* ============================================
   CARDS - Game and feature content containers
   ============================================ */

.game-card,
.feature-card,
.info-card,
.card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, var(--card-strong), var(--card));
    box-shadow: var(--shadow-sm);
}

.game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--background-deep);
}

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

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

.game-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
}

.game-card__title,
.feature-card__title {
    margin-bottom: 0.45rem;
    color: var(--primary);
}

.game-card__text,
.feature-card__text {
    color: var(--foreground-soft);
    font-size: 0.95rem;
}

.game-card__body .btn {
    width: 100%;
    margin-top: auto;
}

.feature-card {
    position: relative;
    padding: var(--space-lg);
    overflow: hidden;
}

.feature-card::after {
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 198, 101, 0.12), transparent 68%);
    content: "";
}

.feature-card__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(242, 198, 101, 0.06);
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-card__link {
    position: relative;
    z-index: 1;
    color: var(--primary-bright);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

/* ============================================
   MEDIA BLOCK - Framed editorial imagery with adjacent content
   ============================================ */

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

.media-block__media {
    min-height: 16rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background-deep);
    box-shadow: var(--shadow-md);
}

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

.media-block__title {
    color: var(--primary);
}

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

.media-block__body > .badge-row,
.media-block__body > .btn {
    margin-block: 1rem;
}

/* ============================================
   TABLES - Transparent factual comparisons
   ============================================ */

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

.table-wrapper:focus-visible {
    outline-offset: 4px;
}

.data-table {
    width: 100%;
    min-width: 43rem;
    border-collapse: collapse;
    color: var(--foreground-soft);
}

.data-table caption {
    padding: 1rem;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
}

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

.data-table thead th {
    background: linear-gradient(180deg, rgba(242, 198, 101, 0.13), rgba(242, 198, 101, 0.055));
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

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

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

.data-table tbody tr:hover {
    background: rgba(242, 198, 101, 0.045);
}

.data-table--highlight th:nth-child(2),
.data-table--highlight td:nth-child(2) {
    background: rgba(242, 198, 101, 0.09);
    color: var(--foreground);
}

/* ============================================
   STEPS - Numbered process pattern
   ============================================ */

.step-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.step-list__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--card);
}

.step-list__num {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-weight: 800;
}

.step-list__title {
    margin-bottom: 0.25rem;
    color: var(--primary-bright);
    font-size: 1.08rem;
}

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

/* ============================================
   ENGAGEMENT PATTERNS - Summary, callout, stats and pull quotes
   ============================================ */

.summary-box,
.callout {
    min-width: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(242, 198, 101, 0.1), rgba(28, 24, 30, 0.96));
}

.summary-box {
    padding: var(--space-lg);
    border: 1px solid var(--border);
    box-shadow: inset 4px 0 0 var(--primary), var(--shadow-sm);
}

.summary-box__title {
    margin-bottom: 0.75rem;
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-box__list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--foreground-soft);
}

.summary-box__list li + li {
    margin-top: 0.45rem;
}

.callout {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
}

.callout--warning {
    border-left-color: var(--destructive);
    background: linear-gradient(145deg, rgba(183, 37, 50, 0.14), var(--card));
}

.callout--info {
    border-left-color: var(--accent);
    background: linear-gradient(145deg, rgba(76, 201, 255, 0.1), var(--card));
}

.callout__icon {
    color: var(--primary);
    font-size: 1.35rem;
}

.callout__title {
    margin-bottom: 0.15rem;
    color: var(--foreground);
    font-weight: 700;
}

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

.stat-highlight {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: radial-gradient(circle at top right, rgba(242, 198, 101, 0.14), transparent 55%), var(--card);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-highlight__value {
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: clamp(2rem, calc(3vw + 1rem), 4rem);
    font-weight: 700;
    line-height: 1;
}

.stat-highlight__label {
    margin-top: 0.5rem;
    color: var(--foreground);
    font-weight: 700;
}

.stat-highlight__note {
    margin-top: 0.4rem;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

.pull-quote {
    position: relative;
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 2rem;
    border-block: 1px solid var(--border);
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, calc(1.5vw + 1rem), 2rem);
    font-weight: 600;
    line-height: 1.4;
}

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

.pull-quote p {
    margin: 0;
}

.pull-quote__source {
    display: block;
    margin-top: 0.8rem;
    color: var(--foreground-soft);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
}

/* ============================================
   FAQ / DETAILS - Native accessible disclosures
   ============================================ */

.faq-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.faq-item {
    align-self: start;
    height: fit-content;
    overflow: clip;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, rgba(242, 198, 101, 0.09), var(--card) 45%);
}

.faq-item__q {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: 1rem 3.4rem 1rem 1rem;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__q::after {
    position: absolute;
    right: 1rem;
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
    content: "+";
    transition: transform var(--transition), background var(--transition);
}

.faq-item[open] .faq-item__q::after {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: rotate(45deg);
}

.faq-item__a {
    padding: 0 1rem 1rem;
    color: var(--foreground-soft);
}

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

/* ============================================
   WINNERS & SOCIAL PROOF - Static evidence-safe presentation
   ============================================ */

.winners {
    border-block: 1px solid var(--border);
    background: rgba(12, 10, 12, 0.85);
}

.winners__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.winners__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem 0.75rem;
    align-items: center;
    min-width: 0;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.winners__chip {
    width: 1.8rem;
    height: 1.8rem;
    border: 0.35rem dotted var(--foreground);
    border-radius: 50%;
    background: var(--secondary);
}

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

.winners__game {
    grid-column: 2;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

.winners__amount {
    grid-row: 1 / span 2;
    grid-column: 3;
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-weight: 700;
}

.winners__note {
    margin: 0;
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-align: center;
}

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

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

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

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

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

.cta-band {
    padding: 1rem;
    background: var(--background-deep);
}

.cta-band__inner {
    width: min(100%, 94rem);
    margin-inline: auto;
    padding: var(--space-xl) 1.2rem;
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 50% 115%, rgba(242, 198, 101, 0.18), transparent 35rem),
        linear-gradient(180deg, var(--card-strong), var(--card));
    text-align: center;
    box-shadow: inset 0 0 45px rgba(242, 198, 101, 0.05), var(--glow-gold);
}

.cta-band__title {
    color: var(--primary);
}

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

.cta-band__legal {
    margin: 1rem 0 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   BREADCRUMBS & SITEMAP - Quiet orientation elements
   ============================================ */

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

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

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

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

.sitemap-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.sitemap-entry__link {
    color: var(--primary-bright);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.sitemap-entry__text {
    margin: 0.65rem 0 0;
    color: var(--foreground-soft);
}

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

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

.site-footer__inner {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
    padding-block: var(--space-xl);
}

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

.site-brand--footer {
    margin-bottom: 1rem;
}

.site-footer__note {
    max-width: 48ch;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-footer__title {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer__links {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a {
    color: var(--foreground-soft);
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 0.2em;
}

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

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

.site-footer__bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-soft);
}

.badge-row--footer {
    margin-bottom: 1rem;
}

.site-footer__legal {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

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

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

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

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

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

    .container,
    .section__inner,
    .prose-wrap,
    .breadcrumbs,
    .site-footer__inner {
        width: min(calc(100% - 3rem), var(--container));
    }

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

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

    .card-grid--games {
        gap: var(--space-md);
    }

    .hero {
        min-height: 45rem;
    }

    .hero__inner {
        width: min(calc(100% - 3rem), var(--container));
        padding-block: 4rem;
    }

    .hero__content {
        padding: 1.5rem;
        border-left: 2px solid var(--primary);
        background: linear-gradient(90deg, rgba(7, 6, 8, 0.76), rgba(7, 6, 8, 0.04));
    }

    .offer-panel__body {
        padding: var(--space-xl);
    }

    .game-card__body {
        padding: 1.25rem;
    }

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

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

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

    .winners__row:nth-child(odd) {
        border-right: 1px solid var(--border-soft);
    }

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

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

/* ============================================
   DESKTOP - Reference-matched wide header, hero split and four-card rows
   ============================================ */

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

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

    .site-header__inner {
        width: min(calc(100% - 3rem), 96rem);
    }

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

    .nav-toggle {
        display: none;
    }

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

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        max-width: none;
        gap: 0.15rem;
    }

    .primary-nav__link {
        min-height: 2.8rem;
        padding: 0.55rem 0.7rem;
        border: 0;
        font-size: 0.92rem;
        white-space: nowrap;
    }

    .primary-nav__cta-item {
        margin: 0 0 0 0.45rem;
    }

    .primary-nav__cta-item .btn {
        width: auto;
        white-space: nowrap;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        max-height: 62rem;
    }

    .hero__media img {
        object-position: center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(4, 4, 5, 0.98) 0%, rgba(8, 7, 9, 0.88) 24%, rgba(8, 7, 9, 0.18) 58%, rgba(7, 6, 8, 0.05) 100%),
            linear-gradient(180deg, rgba(5, 4, 6, 0.02), rgba(8, 7, 9, 0.24) 75%, var(--background-deep) 100%);
    }

    .hero__inner {
        align-items: center;
        width: min(calc(100% - 4rem), var(--container));
        padding-block: 4rem;
    }

    .hero__content {
        width: 54%;
        padding: 0;
        border: 0;
        background: transparent;
    }

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

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

    .offer-panel__media {
        min-height: 32rem;
    }

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

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

    .game-card__body {
        padding: 1.35rem;
    }

    .media-block {
        gap: var(--space-2xl);
    }

    .media-block__media {
        min-height: 23rem;
    }

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

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

    .winners__row {
        border-right: 1px solid var(--border-soft);
        border-bottom: 0;
    }

    .winners__row:last-child {
        border-right: 0;
    }

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

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

@media (min-width: 1280px) {
    .primary-nav__link {
        padding-inline: 0.9rem;
        font-size: 1rem;
    }

    .hero__content {
        width: 50%;
    }
}

/* ============================================
   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-enabled [data-reveal].reveal-pending,
    .js-reveal-enabled [data-reveal].reveal-visible {
        opacity: 1;
        transform: none;
    }
}
