/*
 * DudeSpin Casino Design System
 * Fixed dark neon theme inspired by a premium midnight bowling alley.
 */

:root {
    color-scheme: dark;
    --background: #090317;
    --background-deep: #05010d;
    --surface: #120720;
    --surface-strong: #1b0b30;
    --surface-raised: #24103d;
    --card: #160925;
    --card-foreground: #f4effb;
    --foreground: #f4effb;
    --foreground-strong: #fffafd;
    --muted: #211133;
    --muted-foreground: #c9bdd8;
    --primary: #8618c7;
    --primary-hover: #9b1bdc;
    --primary-foreground: #fff9fd;
    --secondary: #125a7a;
    --secondary-hover: #176f95;
    --secondary-foreground: #f7fbff;
    --accent: #b70f69;
    --accent-hover: #d01478;
    --accent-foreground: #fff9fd;
    --destructive: #9f2740;
    --destructive-foreground: #fff9fd;
    --cyan: #4ed9ff;
    --cyan-strong: #08bce8;
    --pink: #ff3cac;
    --pink-strong: #e71791;
    --violet: #a84dff;
    --gold: #ffd06a;
    --gold-strong: #ffad24;
    --border: #4a2762;
    --border-bright: #c52aa7;
    --ring: #76e5ff;
    --shadow-sm: 0 10px 30px rgba(4, 0, 13, 0.32);
    --shadow-md: 0 22px 60px rgba(4, 0, 13, 0.48);
    --shadow-neon: 0 0 14px rgba(255, 60, 172, 0.48), 0 0 34px rgba(168, 77, 255, 0.28);
    --shadow-cyan: 0 0 12px rgba(78, 217, 255, 0.42);
    --gradient-brand: linear-gradient(110deg, #5d20be 0%, #a815bd 48%, #c10d67 100%);
    --gradient-hot: linear-gradient(100deg, #b80f68 0%, #7e24cb 58%, #3f59c7 100%);
    --gradient-text: linear-gradient(90deg, #72e7ff 0%, #cf5aff 47%, #ff4bad 100%);
    --gradient-gold: linear-gradient(145deg, #fff0a0 0%, #ffbd38 52%, #d77c00 100%);
    --font-body: "Manrope", sans-serif;
    --font-display: "Sora", sans-serif;
    --container: 76rem;
    --container-wide: 88rem;
    --header-height: 4.75rem;
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --radius-pill: 999px;
    --space-2xs: 0.375rem;
    --space-xs: 0.625rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
    --transition-fast: 160ms ease;
    --transition-base: 260ms ease;
}

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

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

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

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: clip;
    color: var(--foreground);
    background:
        radial-gradient(circle at 13% 8%, rgba(142, 31, 205, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 26%, rgba(211, 23, 145, 0.13), transparent 32rem),
        linear-gradient(180deg, var(--background-deep) 0%, var(--background) 28%, #0b041a 72%, var(--background-deep) 100%);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(98, 49, 126, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 49, 126, 0.08) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

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

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

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

button {
    border: 0;
}

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

p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
figure:last-child,
blockquote:last-child {
    margin-bottom: 0;
}

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

section {
    position: relative;
    overflow: clip;
}

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

code {
    max-width: 100%;
}

pre,
.code-block {
    min-width: 0;
    max-width: 100%;
    padding: var(--space-md);
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--background-deep);
}

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

.table-wrapper,
.comparison-table-wrapper,
.data-table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

a[href^="http"]:not([class]) {
    word-break: break-all;
}

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

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

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

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

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2000;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    color: var(--background-deep);
    background: var(--cyan);
    border-radius: var(--radius-sm);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform var(--transition-fast);
}

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

/* ============================================
   TYPOGRAPHY - Bold geometric neon hierarchy
   ============================================ */

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.16;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, calc(7vw + 0.4rem), 4.4rem);
}

h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(1.8rem, calc(4vw + 0.6rem), 3.2rem);
}

h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.2rem, calc(1.5vw + 0.9rem), 1.65rem);
}

h4 {
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.1rem;
}

small {
    font-size: 0.875rem;
    line-height: 1.55;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.7rem;
    height: 2px;
    content: "";
    background: var(--gradient-gold);
    box-shadow: 0 0 10px rgba(255, 189, 56, 0.55);
}

.lead,
.page-hero__intro {
    max-width: 43rem;
    color: var(--muted-foreground);
    font-size: clamp(1.05rem, calc(0.5vw + 0.96rem), 1.25rem);
    line-height: 1.72;
}

.prose {
    max-width: 46rem;
    color: var(--muted-foreground);
}

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

/* ============================================
   LAYOUT PRIMITIVES - Mobile-first containers
   ============================================ */

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

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

#main-content {
    min-height: 60vh;
}

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

.content-section::before,
.faq-section::before,
.cta-band::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(86%, 72rem);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--pink), var(--violet), transparent);
    box-shadow: 0 0 14px rgba(255, 60, 172, 0.62);
    transform: translateX(-50%);
}

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

.section-actions,
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

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

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

/* ============================================
   HEADER & NAVIGATION - Sticky conversion shell
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(207, 52, 185, 0.35);
    background: var(--background-deep);
    box-shadow: 0 10px 30px rgba(3, 0, 10, 0.36);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
    width: min(100% - 1rem, var(--container-wide));
    min-height: var(--header-height);
    margin-inline: auto;
}

.site-brand {
    display: inline-grid;
    grid-template-columns: auto auto;
    justify-self: start;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 5vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-decoration: none;
    filter: drop-shadow(0 0 8px rgba(78, 217, 255, 0.35));
}

.site-brand__dude {
    color: #77e7ff;
    text-shadow: 0 0 10px rgba(78, 217, 255, 0.72);
}

.site-brand__spin {
    color: #ff5abd;
    text-shadow: 0 0 10px rgba(255, 60, 172, 0.72);
}

.site-brand__casino {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 0.3rem;
    color: var(--gold);
    font-size: 0.58em;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgba(255, 189, 56, 0.62);
}

.site-brand--footer {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
}

.menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--foreground-strong);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 1.65rem;
    height: 3px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--pink), var(--violet));
    box-shadow: 0 0 8px rgba(255, 60, 172, 0.65);
    transition: transform var(--transition-base), opacity var(--transition-fast), top var(--transition-base);
}

.menu-toggle span:nth-child(1) { top: 0.85rem; }
.menu-toggle span:nth-child(2) { top: 1.4rem; }
.menu-toggle span:nth-child(3) { top: 1.95rem; }

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 1.4rem;
    transform: 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;
    padding: 1.25rem 1rem 2rem;
    overflow-y: auto;
    background: var(--background);
    border-top: 1px solid var(--border-bright);
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav__list a {
    display: flex;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    align-items: center;
    color: var(--foreground);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 750;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

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

.mobile-nav__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid var(--border);
}

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

.header-action--login,
.header-action--register {
    display: none;
}

@media (min-width: 22.5rem) {
    .header-action--register {
        display: inline-flex;
        min-width: 6.7rem;
        padding-inline: 0.8rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 23.4375rem) and (max-width: 47.999rem) {
    .header-actions {
        gap: 0.35rem;
    }

    .header-action--login,
    .header-action--register {
        display: inline-flex;
        min-width: auto;
        min-height: 2.85rem;
        padding-inline: 0.7rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   BUTTONS - High-contrast neon conversion actions
   ============================================ */

.button {
    position: relative;
    display: inline-flex;
    min-height: 3rem;
    padding: 0.72rem 1.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--primary-foreground);
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    isolation: isolate;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.button::after {
    position: absolute;
    inset: -0.35rem;
    z-index: -1;
    content: "";
    border-radius: inherit;
    background: rgba(255, 60, 172, 0.18);
    filter: blur(12px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.button:hover::after {
    opacity: 1;
}

.button--primary {
    color: var(--primary-foreground);
    background: var(--gradient-brand);
    border-color: #d55dff;
    box-shadow: 0 0 0 1px rgba(78, 217, 255, 0.5), var(--shadow-neon);
}

.button--primary:hover {
    background: linear-gradient(110deg, var(--primary-hover), var(--accent-hover));
    box-shadow: 0 0 0 1px rgba(118, 229, 255, 0.8), 0 0 24px rgba(255, 60, 172, 0.62);
}

.button--secondary {
    color: var(--secondary-foreground);
    background: #10203b;
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.button--secondary:hover {
    background: var(--secondary-hover);
}

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

.button--ghost:hover {
    border-color: var(--pink);
    background: var(--surface-strong);
}

/* ============================================
   HEROES - Integrated mascot and neon scenery
   ============================================ */

.page-hero {
    padding-block: clamp(2.75rem, calc(6vw + 1rem), 6rem);
    background:
        radial-gradient(circle at 78% 44%, rgba(54, 162, 220, 0.18), transparent 24rem),
        radial-gradient(circle at 68% 38%, rgba(213, 35, 172, 0.22), transparent 30rem);
}

.page-hero::after {
    position: absolute;
    right: 4%;
    bottom: 7%;
    width: 42%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
    box-shadow: 0 0 18px rgba(78, 217, 255, 0.8);
    transform: perspective(20rem) rotateX(66deg);
}

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

.page-hero__visual {
    position: relative;
    min-height: 18rem;
}

.page-hero__visual::before,
.media-integrated::before,
.cta-band__visual::before {
    position: absolute;
    inset: 14% 8% 10%;
    z-index: -1;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 217, 255, 0.28), rgba(202, 40, 185, 0.2) 48%, transparent 72%);
    filter: blur(18px);
}

.page-hero__visual img,
.media-integrated img,
.cta-band__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 26px rgba(2, 0, 8, 0.42)) drop-shadow(0 0 14px rgba(207, 54, 229, 0.3));
}

.home-hero {
    padding: 1rem 0 var(--space-3xl);
}

.home-hero__panel {
    position: relative;
    width: min(100% - 1rem, var(--container-wide));
    margin-inline: auto;
    padding: clamp(1.25rem, 4vw, 3rem);
    overflow: clip;
    border: 2px solid var(--pink);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 75% 35%, rgba(44, 141, 210, 0.22), transparent 24rem),
        radial-gradient(circle at 68% 32%, rgba(209, 32, 175, 0.2), transparent 30rem),
        linear-gradient(145deg, rgba(19, 6, 36, 0.98), rgba(6, 2, 18, 0.98));
    box-shadow: inset 0 0 50px rgba(151, 31, 202, 0.15), var(--shadow-neon);
}

.home-hero__panel::before {
    position: absolute;
    inset: auto -8% -9rem 37%;
    height: 19rem;
    content: "";
    background: repeating-linear-gradient(92deg, transparent 0 8%, rgba(78, 217, 255, 0.22) 8.3% 8.55%, transparent 8.8% 16%);
    transform: perspective(28rem) rotateX(64deg);
    transform-origin: bottom;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.home-hero__copy {
    position: relative;
    z-index: 2;
}

.home-hero__visual {
    position: relative;
    min-height: 20rem;
}

.home-hero__visual img {
    width: 100%;
    max-height: 36rem;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(2, 0, 9, 0.5)) drop-shadow(0 0 18px rgba(78, 217, 255, 0.32));
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.6rem;
}

/* ============================================
   MEDIA - Framed scenes and integrated artwork
   ============================================ */

.media-frame {
    position: relative;
    min-width: 0;
    padding: 0.35rem;
    overflow: hidden;
    border: 1px solid rgba(217, 62, 196, 0.7);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(78, 217, 255, 0.25), rgba(255, 60, 172, 0.26));
    box-shadow: var(--shadow-md), 0 0 24px rgba(168, 77, 255, 0.25);
}

.media-frame img {
    width: 100%;
    min-height: 14rem;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    object-fit: cover;
}

.media-integrated {
    position: relative;
    min-height: 15rem;
}

/* ============================================
   CARDS - Reusable content and proof containers
   ============================================ */

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

.feature-card,
.card,
.info-card,
.testimonial-card {
    min-width: 0;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(35, 14, 58, 0.94), rgba(16, 6, 29, 0.96));
    box-shadow: var(--shadow-sm);
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card::after {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 9rem;
    height: 9rem;
    content: "";
    border-radius: 50%;
    background: rgba(177, 29, 181, 0.17);
    filter: blur(12px);
}

.feature-card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-md), var(--shadow-neon);
    transform: translateY(-4px);
}

.feature-card--featured {
    border-color: var(--pink);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 60, 172, 0.21), transparent 12rem),
        linear-gradient(145deg, rgba(49, 15, 70, 0.96), rgba(17, 6, 31, 0.98));
}

.feature-card__icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.15rem;
    place-items: center;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    border-radius: 1rem;
    background: rgba(18, 90, 122, 0.22);
    box-shadow: var(--shadow-cyan);
}

.feature-card__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.feature-card p,
.card p,
.info-card p,
.testimonial-card p {
    color: var(--muted-foreground);
}

.feature-card__link {
    display: inline-flex;
    min-height: 2.75rem;
    margin-top: 0.6rem;
    align-items: center;
    color: var(--cyan);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.feature-card__link::after {
    margin-left: 0.4rem;
    content: "→";
}

/* ============================================
   STAT HIGHLIGHTS - Supplied quantitative facts
   ============================================ */

.stat-highlight {
    display: grid;
    min-width: 0;
    padding: 1.25rem;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(88, 21, 117, 0.42), rgba(15, 6, 28, 0.94));
    box-shadow: var(--shadow-neon);
}

.stat-highlight__number {
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 60, 172, 0.42);
}

.stat-highlight__label {
    margin-top: 0.6rem;
    color: var(--gold);
    font-weight: 800;
}

.stat-highlight small {
    margin-top: 0.5rem;
    color: var(--muted-foreground);
}

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

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

.summary-box {
    border: 1px solid var(--cyan);
    background:
        linear-gradient(135deg, rgba(17, 83, 111, 0.28), rgba(33, 10, 53, 0.9));
    box-shadow: var(--shadow-cyan), var(--shadow-sm);
}

.summary-box__title {
    margin-bottom: 0.8rem;
    font-size: clamp(1.35rem, 4vw, 1.9rem);
}

.summary-box__content,
.summary-box li {
    color: var(--muted-foreground);
}

.summary-box li::marker {
    color: var(--gold);
}

.callout {
    border: 1px solid var(--border-bright);
    border-left: 0.35rem solid var(--pink);
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
}

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

.callout--warning {
    border-left-color: var(--gold-strong);
    background: linear-gradient(135deg, rgba(117, 70, 12, 0.28), var(--surface-strong));
}

.callout--danger {
    border-left-color: #ff6a7f;
    background: linear-gradient(135deg, rgba(128, 27, 49, 0.34), var(--surface-strong));
}

.callout h3 {
    margin-bottom: 0.55rem;
}

.callout p,
.callout li {
    color: var(--muted-foreground);
}

/* ============================================
   PULL QUOTES - Editorial rhythm without claims
   ============================================ */

.pull-quote {
    position: relative;
    min-width: 0;
    padding: var(--space-xl) var(--space-lg);
    border-block: 1px solid var(--border-bright);
    background: linear-gradient(90deg, transparent, rgba(97, 28, 126, 0.26), transparent);
    text-align: center;
}

.pull-quote::before {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--pink);
    content: "“";
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 0.7;
    text-shadow: 0 0 14px rgba(255, 60, 172, 0.58);
}

.pull-quote blockquote {
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 650;
    line-height: 1.45;
}

.pull-quote figcaption {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 750;
}

/* ============================================
   FAQ & DISCLOSURES - Native accessible accordion
   ============================================ */

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

.faq-section > h2,
.faq-section > .faq-list {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

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

.faq-item,
details.disclosure {
    align-self: start;
    height: fit-content;
    overflow: clip;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(17, 7, 30, 0.96);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    interpolate-size: allow-keywords;
}

.faq-item[open],
details.disclosure[open] {
    border-color: var(--border-bright);
    background: var(--surface-strong);
    box-shadow: var(--shadow-neon);
}

.faq-item summary,
details.disclosure summary {
    position: relative;
    display: flex;
    min-height: 3.5rem;
    padding: 1rem 3.5rem 1rem 1.1rem;
    align-items: center;
    color: var(--foreground-strong);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary::after,
details.disclosure summary::after {
    position: absolute;
    right: 1.1rem;
    width: 0.85rem;
    height: 0.85rem;
    content: "";
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg) translateY(-0.2rem);
    transition: transform var(--transition-base);
}

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

.faq-item__answer,
details.disclosure > :not(summary) {
    padding: 0 1.1rem 1.2rem;
    color: var(--muted-foreground);
}

.faq-item::details-content,
details.disclosure::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size var(--transition-base), content-visibility var(--transition-base) allow-discrete;
}

.faq-item[open]::details-content,
details.disclosure[open]::details-content {
    block-size: auto;
}

/* ============================================
   TABLES - Bonus, licence, payment and VIP data
   ============================================ */

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

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

.comparison-table caption {
    padding: 1rem;
    color: var(--muted-foreground);
    font-weight: 700;
    text-align: left;
}

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

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

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

.comparison-table thead th {
    color: var(--foreground-strong);
    background: var(--surface-raised);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.comparison-table tbody th {
    color: var(--foreground-strong);
    background: rgba(35, 16, 55, 0.7);
    font-weight: 750;
}

.comparison-table .is-recommended {
    color: var(--foreground-strong);
    background: rgba(117, 29, 145, 0.3);
    box-shadow: inset 2px 0 var(--pink), inset -2px 0 var(--pink);
}

/* ============================================
   TRUST & PAYMENT BADGES - Compact proof rows
   ============================================ */

.trust-badges,
.payment-badges,
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: stretch;
}

.trust-badge {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.7rem 0.9rem;
    align-items: center;
    gap: 0.55rem;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-weight: 750;
}

.trust-badge__icon {
    display: grid;
    width: 1.75rem;
    height: 1.75rem;
    color: var(--cyan);
    place-items: center;
}

.trust-badge__icon svg {
    width: 100%;
    height: 100%;
}

.payment-badge,
.payment-strip span {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: var(--surface);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

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

.cta-band {
    padding-block: var(--space-3xl);
    background:
        radial-gradient(circle at 78% 48%, rgba(25, 149, 203, 0.22), transparent 20rem),
        radial-gradient(circle at 62% 42%, rgba(221, 29, 154, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(27, 8, 47, 0.92), rgba(7, 2, 17, 0.98));
}

.cta-band__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-band__content p {
    max-width: 42rem;
    margin-inline: auto;
    color: var(--muted-foreground);
}

.cta-band__button {
    min-width: min(100%, 19rem);
    margin-top: 0.6rem;
    padding-block: 0.95rem;
    font-size: 1.05rem;
}

.cta-band__content small {
    display: block;
    max-width: 38rem;
    margin: 0.9rem auto 0;
    color: var(--muted-foreground);
}

.cta-band__visual {
    position: relative;
    min-height: 17rem;
}

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

.social-proof-grid {
    align-items: start;
}

.testimonial-card {
    position: relative;
    border-color: var(--border-bright);
}

.testimonial-card::before {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--pink);
    content: "“";
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 0.8;
}

.testimonial-card blockquote {
    color: var(--foreground-strong);
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 750;
}

/* ============================================
   PAGE-SPECIFIC SHARED PATTERNS - Inventory pages
   ============================================ */

.bonus-highlight {
    padding: var(--space-xl);
    border: 2px solid var(--pink);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 178, 31, 0.15), transparent 14rem),
        linear-gradient(135deg, rgba(80, 18, 108, 0.7), rgba(14, 5, 28, 0.98));
    box-shadow: var(--shadow-neon), var(--shadow-md);
}

.bonus-highlight__amount {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 10vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    text-shadow: 0 0 16px rgba(255, 189, 56, 0.42);
}

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

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

.level-card__number {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.8rem;
    color: var(--foreground-strong);
    border: 1px solid var(--pink);
    border-radius: 50%;
    background: var(--gradient-brand);
    font-family: var(--font-display);
    font-weight: 800;
    place-items: center;
    box-shadow: var(--shadow-neon);
}

.sitemap-grid a {
    color: var(--foreground-strong);
    text-decoration-color: var(--pink);
    text-underline-offset: 0.2em;
}

.responsible-gaming {
    border-color: var(--gold-strong);
}

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

.site-footer {
    position: relative;
    padding: var(--space-2xl) 0 1.25rem;
    overflow: clip;
    border-top: 2px solid var(--pink);
    background:
        radial-gradient(circle at 10% 22%, rgba(65, 173, 219, 0.13), transparent 18rem),
        linear-gradient(180deg, #0b0319, var(--background-deep));
    box-shadow: 0 -8px 28px rgba(255, 60, 172, 0.2);
}

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

.site-footer h2 {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    letter-spacing: 0;
}

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

.site-footer__brand p {
    max-width: 30rem;
    margin-top: 1rem;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-foreground);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(255, 60, 172, 0.68);
    text-underline-offset: 0.2em;
}

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

.site-footer__legal {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: min(100% - 2rem, var(--container-wide));
    padding-top: 1.25rem;
    margin: var(--space-xl) auto 0;
    border-top: 1px solid var(--border);
}

.site-footer__legal strong {
    color: var(--gold);
}

/* ============================================
   SCROLL ENHANCEMENT - Visible without JavaScript
   ============================================ */

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

.reveal-ready [data-reveal]:not(.is-revealed) {
    transform: translateY(1rem);
}

.reveal-ready [data-reveal] {
    transition: transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* ============================================
   TABLET - Wider grids and selective split layouts
   ============================================ */

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

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

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

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

    .site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        width: min(100% - 2rem, var(--container-wide));
        gap: 0.8rem;
    }

    .menu-toggle {
        display: none;
    }

    .site-brand {
        font-size: 1.4rem;
    }

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

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

    .primary-nav__list a {
        min-height: 2.75rem;
        padding: 0.55rem 0.55rem;
        font-size: 0.76rem;
        white-space: nowrap;
    }

    .mobile-nav__actions {
        display: none;
    }

    .header-action--register {
        display: inline-flex;
        min-width: auto;
        padding-inline: 0.8rem;
        font-size: 0.8rem;
    }

    .section-grid,
    .page-hero__grid,
    .cta-band__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2xl);
    }

    .content-section--reverse .section-grid__content {
        order: 2;
    }

    .content-section--reverse .section-grid__media {
        order: 1;
    }

    .page-hero__visual {
        min-height: 27rem;
    }

    .page-hero__visual img {
        max-height: 38rem;
    }

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

    .home-hero__visual {
        min-height: 29rem;
    }

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

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

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

    .faq-item summary,
    details.disclosure summary {
        padding: 1.15rem 4rem 1.15rem 1.35rem;
        font-size: 1.05rem;
    }

    .faq-item__answer,
    details.disclosure > :not(summary) {
        padding: 0 1.35rem 1.35rem;
    }

    .site-footer__inner {
        grid-template-columns: 1.2fr 0.9fr 1.1fr;
        width: min(100% - 3rem, var(--container-wide));
    }

    .site-footer__legal {
        flex-direction: row;
        justify-content: space-between;
        width: min(100% - 3rem, var(--container-wide));
    }
}

/* ============================================
   DESKTOP - Reference-led scale and hero geometry
   ============================================ */

@media (min-width: 64rem) {
    .site-header__inner {
        gap: 1.25rem;
    }

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

    .primary-nav__list {
        gap: 0.25rem;
    }

    .primary-nav__list a {
        padding-inline: 0.72rem;
        font-size: 0.82rem;
    }

    .header-actions {
        gap: 0.65rem;
    }

    .header-action--login {
        display: inline-flex;
    }

    .header-actions .button {
        min-height: 3rem;
        padding-inline: 1.15rem;
    }

    .home-hero {
        padding-top: 1.5rem;
    }

    .home-hero__panel {
        min-height: 40rem;
        padding: 3.5rem;
        border-width: 3px;
        border-radius: var(--radius-xl);
    }

    .home-hero__grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: 2rem;
        min-height: 33rem;
    }

    .home-hero__copy h1 {
        max-width: 12ch;
        font-size: clamp(3.2rem, 4.6vw, 5.2rem);
    }

    .home-hero__visual {
        min-height: 35rem;
    }

    .home-hero__visual img {
        position: absolute;
        right: -3%;
        bottom: -5%;
        width: 112%;
        max-width: none;
        max-height: 42rem;
    }

    .content-section {
        padding-block: 6.5rem;
    }

    .section-grid {
        gap: 5rem;
    }

    .section-grid__content h2 {
        max-width: 15ch;
    }

    .media-frame img {
        min-height: 24rem;
    }

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

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

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

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

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

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

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

    .cta-band__content {
        text-align: left;
    }

    .cta-band__content p,
    .cta-band__content small {
        margin-left: 0;
    }

    .cta-band__visual {
        min-height: 25rem;
    }
}

/* ============================================
   LARGE DESKTOP - Controlled maximum canvas
   ============================================ */

@media (min-width: 80rem) {
    .site-header__inner {
        width: min(100% - 4rem, var(--container-wide));
    }

    .primary-nav__list a {
        padding-inline: 1rem;
        font-size: 0.88rem;
    }

    .header-actions .button {
        padding-inline: 1.4rem;
    }

    .home-hero__panel {
        width: min(100% - 4rem, var(--container-wide));
        padding-inline: 5rem;
    }

    .home-hero__visual img {
        right: -5%;
        width: 118%;
    }
}

/* ============================================
   REDUCED MOTION - Preserve full content access
   ============================================ */

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

    .reveal-ready [data-reveal]:not(.is-revealed) {
        opacity: 1;
        transform: none;
    }
}
