/*
 * V.Vegas Casino Design System
 * A fixed dark Vegas theme with gold, neon red and electric-blue accents.
 */

:root {
    color-scheme: dark;
    --background: #0d1022;
    --background-deep: #080a16;
    --surface: #15192e;
    --surface-strong: #1c213a;
    --surface-soft: #222843;
    --surface-glass: rgba(28, 33, 58, 0.92);
    --surface-overlay: rgba(8, 10, 22, 0.84);
    --surface-overlay-strong: rgba(8, 10, 22, 0.96);
    --foreground: #f7f2e8;
    --foreground-strong: #fffaf0;
    --muted: #c4c7d4;
    --muted-strong: #aeb3c4;
    --gold: #e6b85c;
    --gold-light: #ffe49a;
    --gold-dark: #9b6825;
    --gold-ink: #171006;
    --red: #ff3b52;
    --red-dark: #a8132d;
    --blue: #19b9ff;
    --blue-dark: #0879b0;
    --green: #44d19d;
    --warning: #ffcc66;
    --danger: #ff5c70;
    --border: rgba(230, 184, 92, 0.42);
    --border-soft: rgba(196, 199, 212, 0.2);
    --line: rgba(255, 228, 154, 0.22);
    --focus: #69d3ff;
    --shadow: rgba(0, 0, 0, 0.38);
    --gold-glow: rgba(230, 184, 92, 0.34);
    --red-glow: rgba(255, 59, 82, 0.42);
    --blue-glow: rgba(25, 185, 255, 0.32);
    --white-soft: rgba(255, 250, 240, 0.08);
    --black-soft: rgba(0, 0, 0, 0.24);
    --primary: #e6b85c;
    --primary-foreground: #171006;
    --secondary: #252b47;
    --secondary-foreground: #fffaf0;
    --accent: #ff3b52;
    --accent-foreground: #160208;
    --destructive: #ff5c70;
    --destructive-foreground: #1b0307;

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

    --text-xs: 0.875rem;
    --text-sm: 0.9375rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: clamp(1.25rem, calc(1.5vw + 0.85rem), 1.6rem);
    --text-2xl: clamp(1.55rem, calc(2.4vw + 0.75rem), 2.35rem);
    --text-3xl: clamp(2rem, calc(4vw + 0.65rem), 3.75rem);
    --text-hero: clamp(2.15rem, calc(5.5vw + 0.25rem), 5.75rem);

    --space-2xs: 0.35rem;
    --space-xs: 0.55rem;
    --space-sm: 0.8rem;
    --space-md: 1.1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: clamp(4rem, calc(6vw + 2rem), 7.5rem);

    --radius-sm: 0.55rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.3rem;
    --radius-xl: 1.8rem;
    --radius-pill: 999px;

    --container: 80rem;
    --content: 48rem;
    --header-height: 4.75rem;
    --transition: 180ms ease;
}

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

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

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

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 8%, var(--blue-glow), transparent 25rem),
        radial-gradient(circle at 92% 18%, var(--red-glow), transparent 27rem),
        linear-gradient(180deg, var(--background-deep), var(--background) 32rem, var(--background-deep));
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

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

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

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

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

section {
    position: relative;
    overflow: clip;
}

main {
    min-height: 65vh;
}

::selection {
    background: var(--gold);
    color: var(--gold-ink);
}

/* ============================================
   TYPOGRAPHY - Strong premium hierarchy
   ============================================ */

h1,
h2,
h3,
h4 {
    margin: 0 0 var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.18;
    text-wrap: balance;
}

h1 {
    font-size: var(--text-hero);
    letter-spacing: -0.045em;
}

h2 {
    font-size: var(--text-2xl);
    letter-spacing: -0.025em;
}

h3 {
    font-size: var(--text-xl);
    letter-spacing: -0.015em;
}

h4 {
    font-size: var(--text-lg);
}

p {
    margin: 0 0 var(--space-md);
}

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

ul,
ol {
    margin-top: 0;
}

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

article,
section,
footer,
header,
nav {
    min-width: 0;
}

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

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

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.75rem;
    height: 0.12rem;
    background: var(--red);
    box-shadow: 0 0 0.75rem var(--red-glow);
    content: "";
}

.lead {
    max-width: 44rem;
    color: var(--muted);
    font-size: var(--text-lg);
    line-height: 1.65;
}

.gold-text {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

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

.skip-link {
    position: fixed;
    z-index: 1100;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--gold-light);
    color: var(--gold-ink);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform var(--transition);
}

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

/* ============================================
   LAYOUT - Containers and section rhythm
   ============================================ */

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

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

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

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

.section--surface {
    border-block: 1px solid var(--border-soft);
    background:
        linear-gradient(135deg, var(--white-soft), transparent 36%),
        var(--surface);
}

.section--deep {
    background: var(--background-deep);
}

.section--neon {
    background:
        radial-gradient(circle at 0 50%, var(--red-glow), transparent 24rem),
        radial-gradient(circle at 100% 50%, var(--blue-glow), transparent 24rem),
        var(--background-deep);
}

.section-header {
    max-width: 58rem;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.section-header p {
    max-width: 48rem;
    margin-inline: auto;
    color: var(--muted);
}

.stack {
    display: grid;
    gap: var(--space-lg);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

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

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

.prose h2,
.prose h3,
.seo-text h2,
.seo-text h3 {
    color: var(--foreground-strong);
}

.prose > * + *,
.seo-text > * + * {
    margin-top: var(--space-md);
}

.prose ul,
.prose ol,
.seo-text ul,
.seo-text ol {
    padding-left: 1.25rem;
}

.prose li + li,
.seo-text li + li {
    margin-top: var(--space-xs);
}

/* ============================================
   HEADER & NAVIGATION - Mobile drawer, desktop bar
   ============================================ */

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

.header-inner {
    display: flex;
    width: min(calc(100% - 1.25rem), var(--container));
    height: 100%;
    margin-inline: auto;
    align-items: center;
    gap: var(--space-sm);
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    color: var(--gold-light);
    flex-direction: column;
    flex-shrink: 1;
    font-family: var(--font-display);
    line-height: 1;
    text-decoration: none;
}

.site-brand:hover {
    color: var(--gold-light);
}

.site-brand__text {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.site-brand__sub {
    margin-top: 0.28rem;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-align: center;
    text-transform: uppercase;
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    display: flex;
    max-width: 100vw;
    padding: var(--space-xl) var(--space-md) calc(var(--space-2xl) + env(safe-area-inset-bottom));
    overflow-y: auto;
    align-items: stretch;
    background: var(--background);
    flex-direction: column;
}

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

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

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

.primary-nav__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.header-actions {
    display: none;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-grid;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0.72rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-left: auto;
    background: var(--surface);
    cursor: pointer;
    place-content: center;
    gap: 0.3rem;
}

.nav-toggle span {
    display: block;
    width: 1.35rem;
    height: 0.13rem;
    border-radius: var(--radius-pill);
    background: var(--gold-light);
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.43rem) 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.43rem) rotate(-45deg);
}

/* ============================================
   BUTTONS - Gold conversion actions and outlines
   ============================================ */

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

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

.btn--gold {
    border-color: var(--gold-light);
    background: linear-gradient(105deg, var(--gold-dark), var(--gold-light) 48%, var(--gold));
    box-shadow: 0 0 0.85rem var(--red-glow), inset 0 0 0 1px var(--white-soft);
    color: var(--gold-ink);
}

.btn--gold:hover {
    box-shadow: 0 0 1.45rem var(--red-glow), 0 0 2.5rem var(--gold-glow);
    color: var(--gold-ink);
}

.btn--ghost {
    border-color: var(--gold);
    background: var(--surface-overlay);
    color: var(--gold-light);
}

.btn--ghost:hover {
    background: var(--gold);
    color: var(--gold-ink);
}

.btn--sm {
    min-height: 2.75rem;
    padding: 0.66rem 1rem;
    font-size: var(--text-sm);
}

.btn--lg {
    min-height: 3.5rem;
    padding: 0.95rem 2rem;
    font-size: var(--text-lg);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.to-top:focus-visible,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.cta-inline {
    display: flex;
    margin-top: var(--space-xl);
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-sm);
}

.cta-inline__note,
.cta-band__note {
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

/* ============================================
   HEROES - Integrated cinematic foreground art
   ============================================ */

.page-hero,
.home-hero {
    isolation: isolate;
    min-height: 36rem;
    background:
        linear-gradient(180deg, transparent 55%, var(--background-deep)),
        radial-gradient(circle at 25% 35%, var(--gold-glow), transparent 19rem),
        radial-gradient(circle at 80% 35%, var(--blue-glow), transparent 22rem),
        var(--background-deep);
}

.page-hero::before,
.home-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(110deg, var(--surface-overlay-strong) 0 18%, transparent 56%),
        repeating-linear-gradient(90deg, transparent 0 7rem, var(--white-soft) 7.05rem 7.1rem);
    content: "";
}

.page-hero__inner,
.home-hero__inner {
    position: relative;
    display: grid;
    width: min(100%, var(--container));
    min-height: inherit;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
}

.page-hero__content,
.home-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    padding: var(--space-2xl) 1rem 3rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}

.page-hero__title,
.home-hero__title {
    max-width: 15ch;
    color: var(--gold-light);
    text-shadow: 0 0 1.5rem var(--gold-glow);
}

.page-hero__subtitle {
    margin-bottom: var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 0.8rem var(--background-deep);
}

.page-hero__text,
.home-hero__text {
    max-width: 42rem;
    color: var(--foreground-strong);
    font-size: var(--text-lg);
    text-shadow: 0 2px 0.8rem var(--background-deep);
}

.page-hero__art,
.home-hero__art {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.page-hero__art img,
.home-hero__art img,
[data-visual-role="hero-foreground"] {
    position: absolute;
    right: -6rem;
    bottom: 0;
    width: min(112%, 52rem);
    max-width: none;
    height: 78%;
    object-fit: contain;
    object-position: right bottom;
}

.page-hero__art::after,
.home-hero__art::after {
    position: absolute;
    z-index: -1;
    right: -8%;
    bottom: 0;
    width: 78%;
    height: 45%;
    background: radial-gradient(ellipse at center bottom, var(--gold-glow), transparent 62%);
    content: "";
    filter: blur(0.5rem);
}

.home-hero__slogan {
    margin-bottom: var(--space-md);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

/* Full-bleed scene variant for opaque environmental artwork. */
.hero-scene {
    min-height: 38rem;
    background: var(--background-deep);
}

.hero-scene__media {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.hero-scene__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
}

.hero-scene__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--surface-overlay) 0%, transparent 36%, var(--surface-overlay-strong) 100%);
    content: "";
}

.hero-scene .page-hero__content,
.hero-scene .home-hero__content {
    min-height: inherit;
}

/* ============================================
   TRUST BAR - Gold safety ribbon
   ============================================ */

.trust-bar {
    position: relative;
    z-index: 4;
    border-block: 1px solid var(--gold-light);
    background: linear-gradient(100deg, var(--gold-dark), var(--gold-light) 45%, var(--gold));
    color: var(--gold-ink);
    box-shadow: 0 0 1.5rem var(--gold-glow);
}

.trust-bar__list {
    display: grid;
    width: min(calc(100% - 1.5rem), var(--container));
    padding: var(--space-sm) 0;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    list-style: none;
}

.trust-bar__item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.25;
}

.trust-bar__icon {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    border: 2px solid var(--gold-ink);
    border-radius: 50%;
    flex: 0 0 auto;
    place-items: center;
}

/* ============================================
   CARDS - Premium content containers
   ============================================ */

.card,
.info-card,
.usp,
.stat-highlight,
.testimonial-card {
    position: relative;
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, var(--white-soft), transparent 42%),
        var(--surface);
    box-shadow: 0 1rem 2.5rem var(--shadow);
}

.card::before,
.usp::before,
.testimonial-card::before {
    position: absolute;
    top: 0;
    left: var(--space-lg);
    width: 3.5rem;
    height: 0.16rem;
    background: linear-gradient(90deg, var(--red), var(--gold));
    box-shadow: 0 0 0.85rem var(--red-glow);
    content: "";
}

.card__icon,
.usp__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: var(--surface-strong);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    place-items: center;
}

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

.card__text,
.usp__text,
.testimonial-card__text {
    color: var(--muted);
}

.card__link {
    display: inline-flex;
    min-height: 2.75rem;
    margin-top: var(--space-sm);
    align-items: center;
    color: var(--gold-light);
    font-weight: 800;
}

.card--featured,
.info-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 1.8rem var(--gold-glow), 0 1rem 2.5rem var(--shadow);
}

/* ============================================
   GAME TILES - Vegas marquee image cards
   ============================================ */

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

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

.tile__link {
    display: block;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    overflow: clip;
    background: var(--surface);
    box-shadow: 0 0 1.1rem var(--gold-glow);
    color: var(--foreground-strong);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tile__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 1.7rem var(--red-glow), 0 1rem 2rem var(--shadow);
}

.tile__frame {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: clip;
    background: var(--surface-strong);
}

.tile__frame::after {
    position: absolute;
    inset: 0;
    border: 0.35rem dotted var(--gold-light);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.tile__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.tile__link:hover img {
    transform: scale(1.045);
}

.tile__label {
    display: block;
    min-height: 3.25rem;
    padding: 0.72rem var(--space-sm);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 800;
}

.tile__text {
    margin-top: var(--space-sm);
    color: var(--muted);
    font-size: var(--text-sm);
}

/* ============================================
   BONUS TIERS - Stacked chip-inspired offers
   ============================================ */

.bonus-grid {
    align-items: end;
}

.bonus-tier {
    position: relative;
    display: flex;
    min-height: 18rem;
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
    overflow: clip;
    align-items: center;
    background: linear-gradient(160deg, var(--gold-light), var(--gold) 46%, var(--gold-dark));
    box-shadow: 0 1rem 2rem var(--shadow), 0 0 1rem var(--gold-glow);
    color: var(--gold-ink);
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.bonus-tier::before,
.bonus-tier::after {
    position: absolute;
    width: 5rem;
    height: 1.2rem;
    border: 0.3rem dashed var(--gold-ink);
    border-radius: 50%;
    content: "";
    opacity: 0.35;
}

.bonus-tier::before {
    top: 1rem;
    left: 1rem;
}

.bonus-tier::after {
    right: 1rem;
    bottom: 1rem;
}

.bonus-tier--featured {
    min-height: 20.5rem;
    box-shadow: 0 0 1.6rem var(--red-glow), 0 1rem 2rem var(--shadow);
}

.bonus-tier__step {
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bonus-tier__percent {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 900;
    line-height: 1;
}

.bonus-tier__amount,
.bonus-tier__spins {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 800;
}

.bonus-tier__note {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
}

/* ============================================
   USP & STAT HIGHLIGHTS - Quantified benefits
   ============================================ */

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

.usp {
    display: flex;
    min-height: 12rem;
    flex-direction: column;
}

.usp__number,
.stat-highlight__number {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 1rem var(--gold-glow);
}

.usp__label,
.stat-highlight__label {
    display: block;
    margin-top: var(--space-sm);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 800;
}

.stat-highlight {
    text-align: center;
}

.stat-highlight__note {
    display: block;
    margin-top: var(--space-sm);
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

/* ============================================
   SPLIT MEDIA - Editorial content blocks
   ============================================ */

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

.split__media {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: clip;
    background: var(--surface);
    box-shadow: 0 1rem 2rem var(--shadow);
}

.split__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split__body {
    min-width: 0;
    color: var(--muted);
}

.split__title {
    color: var(--gold-light);
}

/* ============================================
   STEPS - Numbered claim and registration flow
   ============================================ */

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

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

.step::before {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 1rem var(--red-glow);
    color: var(--gold-ink);
    content: counter(vegas-step);
    font-family: var(--font-display);
    font-weight: 900;
    place-items: center;
}

.step__title {
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
}

.step__text {
    color: var(--muted);
}

/* ============================================
   TABLES - Transparent comparisons and terms
   ============================================ */

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

.table-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 1rem 2rem var(--shadow);
}

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

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

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

.data-table thead th {
    background: var(--surface-strong);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-weight: 800;
}

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

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

.data-table tbody tr:hover {
    background: var(--white-soft);
}

.data-table .is-recommended,
.data-table .recommended {
    background: linear-gradient(90deg, var(--gold-glow), var(--white-soft));
    box-shadow: inset 0.2rem 0 var(--gold);
}

/* ============================================
   ACCORDIONS - Native accessible disclosures
   ============================================ */

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

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

.faq-item summary,
.accordion-item summary {
    position: relative;
    display: flex;
    min-height: 3.5rem;
    padding: 0.95rem 3.5rem 0.95rem var(--space-md);
    align-items: center;
    color: var(--foreground-strong);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary::after,
.accordion-item summary::after {
    position: absolute;
    right: var(--space-md);
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.16rem solid var(--gold-light);
    border-bottom: 0.16rem solid var(--gold-light);
    content: "";
    transform: rotate(45deg) translateY(-0.2rem);
    transition: transform var(--transition);
}

.faq-item[open] summary,
.accordion-item[open] summary {
    border-bottom: 1px solid var(--border-soft);
    color: var(--gold-light);
}

.faq-item[open] summary::after,
.accordion-item[open] summary::after {
    transform: rotate(225deg) translate(-0.15rem, -0.15rem);
}

.faq-item__body,
.accordion-item__body {
    padding: var(--space-md);
    color: var(--muted);
}

/* ============================================
   ENGAGEMENT PATTERNS - Summary, callout, quote
   ============================================ */

.tldr,
.callout {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, var(--gold-glow), transparent 50%),
        var(--surface);
}

.tldr__title,
.callout__title {
    margin-bottom: var(--space-sm);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 800;
}

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

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

.callout {
    border-left: 0.3rem solid var(--blue);
}

.callout--warning {
    border-left-color: var(--warning);
    background: linear-gradient(135deg, var(--gold-glow), transparent 54%), var(--surface);
}

.callout--danger {
    border-left-color: var(--danger);
    background: linear-gradient(135deg, var(--red-glow), transparent 54%), var(--surface);
}

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

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

.pull-quote {
    position: relative;
    max-width: 52rem;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    border-block: 1px solid var(--gold);
    margin: var(--space-2xl) auto;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.pull-quote::before {
    position: absolute;
    top: -1.1rem;
    left: 50%;
    padding-inline: var(--space-sm);
    background: var(--background);
    color: var(--red);
    content: "“";
    font-size: 3rem;
    line-height: 1;
    transform: translateX(-50%);
}

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

/* ============================================
   LOGO & PAYMENT STRIPS - Static finite rows
   ============================================ */

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

.logo-strip {
    justify-content: center;
}

.logo-chip,
.pay-badge {
    display: inline-flex;
    min-height: 2.7rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    background: var(--surface-strong);
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.logo-chip {
    color: var(--gold-light);
}

.pay-list--wide {
    justify-content: center;
}

.pay-list--wide .pay-badge {
    flex: 1 1 7rem;
}

/* ============================================
   SOCIAL PROOF - Available only for supplied quotes
   ============================================ */

.social-proof {
    align-items: stretch;
}

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

.testimonial-card__text {
    font-size: var(--text-lg);
}

.testimonial-card__author {
    margin-top: auto;
    padding-top: var(--space-md);
    color: var(--gold-light);
    font-weight: 800;
}

.testimonial-card__meta {
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

/* ============================================
   CTA BAND - High-contrast conversion section
   ============================================ */

.cta-band {
    width: min(calc(100% - 2rem), var(--container));
    padding: 0.16rem;
    border-radius: var(--radius-xl);
    margin: var(--space-3xl) auto;
    background: linear-gradient(90deg, var(--red), var(--gold-light), var(--blue));
    box-shadow: 0 0 1.5rem var(--red-glow), 0 0 2.2rem var(--blue-glow);
}

.cta-band__inner {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: calc(var(--radius-xl) - 0.14rem);
    background:
        radial-gradient(circle at center, var(--white-soft), transparent 58%),
        var(--surface-overlay-strong);
    text-align: center;
}

.cta-band__title {
    max-width: 58rem;
    margin-inline: auto;
    color: var(--gold-light);
}

.cta-band__text {
    max-width: 45rem;
    margin: 0 auto var(--space-lg);
    color: var(--foreground);
}

.cta-band__note {
    max-width: 42rem;
    margin: var(--space-md) auto 0;
}

/* ============================================
   BREADCRUMBS - Compact orientation trail
   ============================================ */

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

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

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

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

.breadcrumbs a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}

/* ============================================
   LEGAL & RESPONSIBLE GAMING - Visible safeguards
   ============================================ */

.legal-line {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.legal-line--inline {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.age-badge {
    display: inline-grid;
    width: 2.7rem;
    height: 2.7rem;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    flex: 0 0 auto;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 900;
    place-items: center;
}

/* ============================================
   MEDIA BAND - Full-width figure strip
   ============================================ */

.media-band {
    margin: 0 0 var(--space-2xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: clip;
    background: var(--surface);
    box-shadow: 0 1rem 2rem var(--shadow);
}

.media-band img {
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 3;
    object-fit: cover;
}

/* ============================================
   FOOTER - Structured trust and internal links
   ============================================ */

.site-footer {
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, var(--surface), var(--background-deep)),
        var(--background-deep);
}

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

.site-brand__text--footer {
    display: block;
    color: var(--gold-light);
    font-size: var(--text-2xl);
}

.footer-slogan {
    margin-top: var(--space-md);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-note {
    max-width: 32rem;
    color: var(--muted-strong);
    font-size: var(--text-sm);
}

.footer-heading {
    margin-bottom: var(--space-md);
    color: var(--foreground-strong);
    font-size: var(--text-lg);
}

.footer-links,
.footer-facts {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.footer-links a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-facts {
    color: var(--muted);
}

.footer-col .pay-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-bottom {
    display: flex;
    padding-block: var(--space-xl);
    border-top: 1px solid var(--border-soft);
    margin-top: var(--space-2xl);
    color: var(--muted-strong);
    flex-direction: column;
    gap: var(--space-xs);
    font-size: var(--text-sm);
}

/* ============================================
   BACK TO TOP - Site-wide utility control
   ============================================ */

.to-top {
    position: fixed;
    z-index: 900;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 1rem var(--gold-glow);
    color: var(--gold-ink);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity var(--transition), transform var(--transition);
}

.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.to-top svg {
    fill: currentColor;
}

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

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

.js-reveal .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(1.4rem);
}

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

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

/* ============================================
   TABLET - Two-column content and denser cards
   ============================================ */

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

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

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

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

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

    .game-grid > :nth-last-child(2):nth-child(3n + 1),
    .game-grid > :last-child:nth-child(3n + 2) {
        grid-column: auto;
    }

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

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

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

    .split--reverse .split__media {
        order: 2;
    }

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

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

    .footer-bottom {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   DESKTOP - Reference-driven wide composition
   ============================================ */

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

    .site-header {
        background: var(--surface-overlay-strong);
    }

    .header-inner {
        width: min(calc(100% - 2.5rem), var(--container));
        gap: var(--space-lg);
    }

    .site-brand {
        flex: 0 0 auto;
    }

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

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

    .nav-toggle {
        display: none;
    }

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

    .primary-nav__list {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: clamp(0.15rem, 0.55vw, 0.65rem);
        white-space: nowrap;
    }

    .primary-nav__list a {
        min-height: 2.8rem;
        padding: 0.55rem clamp(0.42rem, 0.65vw, 0.75rem);
        border: 0;
        border-radius: var(--radius-sm);
        font-size: clamp(0.76rem, 0.95vw, 0.96rem);
    }

    .primary-nav__actions {
        display: none;
    }

    .header-actions {
        display: flex;
        flex: 0 0 auto;
        gap: var(--space-sm);
    }

    .page-hero,
    .home-hero {
        min-height: min(46rem, calc(100vh - var(--header-height)));
    }

    .page-hero__inner,
    .home-hero__inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .page-hero__content,
    .home-hero__content {
        padding: clamp(4rem, 7vw, 7rem) var(--space-xl) clamp(4rem, 8vw, 7rem);
        justify-content: center;
    }

    .page-hero__title,
    .home-hero__title {
        max-width: 14ch;
    }

    .page-hero__art img,
    .home-hero__art img,
    [data-visual-role="hero-foreground"] {
        right: -1rem;
        width: min(61%, 55rem);
        height: 98%;
    }

    .hero-scene__media img {
        object-position: center;
    }

    .hero-scene__media::after {
        background: linear-gradient(90deg, var(--surface-overlay-strong) 0%, var(--surface-overlay) 34%, transparent 62%);
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
    }
}

/* ============================================
   LARGE DESKTOP - Maximum reference density
   ============================================ */

@media (min-width: 80rem) {
    .primary-nav__list a {
        font-size: 0.96rem;
    }

    .header-actions .btn {
        padding-inline: 1.25rem;
    }

    .page-hero__content,
    .home-hero__content {
        padding-left: 0;
    }
}

/* ============================================
   SMALL MOBILE - Header composition at 320px
   ============================================ */

@media (max-width: 23.4375rem) {
    .header-inner {
        gap: var(--space-xs);
    }

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

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

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

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

/* ============================================
   MOTION PREFERENCES - Preserve visibility
   ============================================ */

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

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

    .js-reveal .reveal,
    .js-reveal .reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}
