/*
 * 30BET CASINO - DESIGN SYSTEM
 * Dark midnight navy with neon blue/orange/gold accents
 * Fonts: Chakra Petch (display) + Manrope (body)
 * Mobile-first, dark default theme with light variant
 */

/* ============================================
   DESIGN TOKENS
   Dark theme is the default; light theme via .light class
   ============================================ */
:root {
    --background: #07111f;
    --foreground: #edf6ff;
    --card: #10233b;
    --card-foreground: #edf6ff;
    --popover: #0a182b;
    --popover-foreground: #edf6ff;
    --primary: #ff7a1a;
    --primary-foreground: #07111f;
    --secondary: #172a45;
    --secondary-foreground: #eaf6ff;
    --muted: #1a2f4d;
    --muted-foreground: #a8bdd4;
    --accent: #f2c14e;
    --accent-foreground: #07111f;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2c4a73;
    --input: #0b1a2e;
    --ring: #22d3ee;

    --cyan: #22d3ee;
    --gold: #f2c14e;
    --orange: #ff7a1a;
    --navy-deep: #050d1a;
    --navy-mid: #0a182b;
    --navy-steel: #10233b;
    --sapphire: #2c4a73;
    --ice-white: #edf6ff;
    --mist-blue: #a8bdd4;

    --font-display: "Chakra Petch", sans-serif;
    --font-body: "Manrope", sans-serif;

    --radius-card: 18px;
    --radius-btn: 14px;
    --radius-pill: 999px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    --max-width: 1180px;
    --header-height: 64px;

    --transition-fast: 220ms ease-out;
    --transition-slow: 320ms ease;
}

.dark {
    --background: #07111f;
    --foreground: #edf6ff;
    --card: #10233b;
    --card-foreground: #edf6ff;
    --popover: #0a182b;
    --popover-foreground: #edf6ff;
    --primary: #ff7a1a;
    --primary-foreground: #07111f;
    --secondary: #172a45;
    --secondary-foreground: #eaf6ff;
    --muted: #1a2f4d;
    --muted-foreground: #a8bdd4;
    --accent: #f2c14e;
    --accent-foreground: #07111f;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2c4a73;
    --input: #0b1a2e;
    --ring: #22d3ee;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

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

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

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

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

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

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

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

section {
    overflow: clip;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.58;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--ice-white);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ice-white);
    line-height: 1.2;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 26px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    max-width: 72ch;
}

/* ============================================
   TYPOGRAPHY - Responsive Scale
   ============================================ */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
}

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 22px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

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

@media (min-width: 1024px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

.section--dense {
    padding: var(--space-md) 0;
}

.section__header {
    margin-bottom: var(--space-lg);
}

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

.section__subtitle {
    color: var(--mist-blue);
    font-size: 17px;
}

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

.text-center .section__header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HEADER - Sticky dark bar
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.95);
    border-bottom: 1px solid var(--sapphire);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ice-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--ice-white);
}

.site-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy-steel), var(--navy-mid));
    border: 2px solid var(--cyan);
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--cyan);
    position: relative;
}

.site-brand__logo::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.site-brand__text {
    letter-spacing: -0.01em;
}

/* ============================================
   PRIMARY NAV - Desktop inline, mobile drawer
   ============================================ */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    color: var(--mist-blue);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.primary-nav__link:hover, .primary-nav__link:focus {
    color: var(--ice-white);
    background: var(--secondary);
}

.primary-nav__link.is-active {
    color: var(--cyan);
}

.primary-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: var(--space-sm);
    border-left: 1px solid var(--sapphire);
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

/* ============================================
   MOBILE MENU TOGGLE - Burger button
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--sapphire);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ice-white);
    border-radius: 2px;
    margin: 0 auto;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--background);
    padding: var(--space-lg) 22px;
    overflow-y: auto;
    z-index: 999;
    gap: var(--space-sm);
}

.primary-nav.is-open .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.primary-nav.is-open .primary-nav__link {
    min-height: 48px;
    font-size: 17px;
    padding: 12px 16px;
    border: 1px solid var(--sapphire);
    border-radius: 10px;
}

.primary-nav.is-open .primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    border-left: none;
    padding-top: var(--space-sm);
    margin-top: auto;
}

.primary-nav.is-open .primary-nav__actions .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 14px 24px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    min-height: 48px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 20px rgba(255, 122, 26, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 122, 26, 0.45);
    color: var(--primary-foreground);
}

.btn--secondary {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan);
}

.btn--secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
}

.btn--lg {
    min-height: 52px;
    font-size: 17px;
    padding: 16px 32px;
}

.btn--sm {
    min-height: 40px;
    font-size: 14px;
    padding: 10px 18px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--sapphire);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ice-white);
    margin-bottom: var(--space-sm);
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__list a, .footer-col__list span {
    color: var(--mist-blue);
    font-size: 15px;
}

.footer-col__list a:hover {
    color: var(--cyan);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--sapphire);
    border-bottom: 1px solid var(--sapphire);
    margin-bottom: var(--space-md);
}

.footer-payments__label {
    font-size: 14px;
    color: var(--mist-blue);
    font-weight: 600;
}

.footer-payments__item {
    font-size: 14px;
    color: var(--mist-blue);
    padding: 4px 12px;
    background: var(--secondary);
    border-radius: var(--radius-pill);
    border: 1px solid var(--sapphire);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copy {
    font-size: 14px;
    color: var(--mist-blue);
}

.footer-sitemap {
    font-size: 14px;
    color: var(--mist-blue);
    text-decoration: underline;
}

.footer-sitemap:hover {
    color: var(--cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 56px;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--background) 100%);
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero {
        padding: 120px 0 88px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 17, 31, 0.85) 0%, rgba(7, 17, 31, 0.5) 50%, rgba(7, 17, 31, 0.75) 100%);
    z-index: 1;
}

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

.hero__pulse {
    position: relative;
    height: 3px;
    width: 120px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.hero__pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--ice-white), transparent);
    animation: pulse-sweep 2.5s ease-in-out infinite;
}

@keyframes pulse-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .hero__title { font-size: 38px; }
}

@media (min-width: 1024px) {
    .hero__title { font-size: 44px; }
}

.hero__subtitle {
    font-size: 17px;
    color: var(--mist-blue);
    line-height: 1.58;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .hero__actions {
        flex-direction: row;
        align-items: center;
    }
}

.hero__image {
    position: relative;
    z-index: 2;
    margin-top: var(--space-xl);
    border-radius: var(--radius-card);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero__image {
        margin-top: 0;
    }
}

/* ============================================
   CASHBACK PULSE LINE - Signature element
   ============================================ */
.cashback-pulse {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    overflow: hidden;
}

.cashback-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--ice-white), transparent);
    animation: pulse-sweep 3s ease-in-out infinite;
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: var(--space-md) 0;
    background: linear-gradient(180deg, var(--navy-mid), var(--background));
}

@media (min-width: 768px) {
    .stat-block {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.stat-block--dense {
    padding: 16px 0;
}

.stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-sm);
    position: relative;
}

@media (min-width: 768px) {
    .stat-cell:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: var(--sapphire);
    }
}

.stat-cell__number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .stat-cell__number {
        font-size: 48px;
    }
}

.stat-cell__label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mist-blue);
    margin-top: 6px;
}

.stat-cell__note {
    font-size: 13px;
    color: var(--mist-blue);
    margin-top: 4px;
    opacity: 0.8;
}

.stat-cell::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    margin-top: 10px;
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    background: var(--navy-steel);
    border: 1px solid var(--sapphire);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.15);
}

.bonus-card__top {
    margin-bottom: var(--space-md);
}

.bonus-card__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin-bottom: 10px;
}

.bonus-card__headline {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ice-white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.bonus-card__subline {
    font-size: 15px;
    color: var(--mist-blue);
    line-height: 1.5;
}

.bonus-card__pulse {
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    margin-bottom: var(--space-md);
}

.bonus-card__terms {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-lg);
}

.bonus-card__term {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(44, 74, 115, 0.4);
}

.bonus-card__term dt {
    font-size: 15px;
    color: var(--mist-blue);
    font-weight: 500;
}

.bonus-card__term dd {
    font-size: 15px;
    color: var(--ice-white);
    font-weight: 600;
    text-align: right;
}

.bonus-card__action {
    margin-top: auto;
}

.bonus-card__micro {
    font-size: 13px;
    color: var(--mist-blue);
    margin-top: 8px;
    text-align: center;
}

/* ============================================
   BONUS CARD GRID
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--navy-steel);
    border: 1px solid var(--sapphire);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2), 0 4px 20px rgba(34, 211, 238, 0.08);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--ice-white);
    list-style: none;
    transition: background var(--transition-fast);
}

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

.faq-item__question:hover {
    background: rgba(34, 211, 238, 0.05);
}

.faq-item__text {
    flex: 1;
}

.faq-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--cyan);
    transition: transform var(--transition-slow);
}

.faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    overflow: hidden;
}

.faq-item__inner {
    padding: 0 20px 20px;
    border-left: 3px solid var(--gold);
    margin-left: 20px;
    color: var(--ice-white);
    font-size: 16px;
    line-height: 1.58;
}

.faq-item__inner a {
    color: var(--cyan);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
    overflow: clip;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 88px 0;
    }
}

.cta-banner__pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
    overflow: hidden;
}

.cta-banner__pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--ice-white), transparent);
    animation: pulse-sweep 3s ease-in-out infinite;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 22px;
}

.cta-banner__headline {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ice-white);
    margin-bottom: var(--space-sm);
}

@media (min-width: 1024px) {
    .cta-banner__headline {
        font-size: 32px;
    }
}

.cta-banner__subline {
    font-size: 17px;
    color: var(--mist-blue);
    margin-bottom: var(--space-lg);
}

.cta-banner__micro {
    font-size: 15px;
    color: var(--mist-blue);
    margin-top: var(--space-sm);
}

/* ============================================
   CONTENT BLOCKS - Articles & Text
   ============================================ */
.content-block {
    max-width: 760px;
}

.content-block p {
    margin-bottom: var(--space-md);
    color: var(--ice-white);
}

.content-block h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-block h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-block ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: var(--space-md);
}

.content-block li {
    margin-bottom: 8px;
    color: var(--ice-white);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.callout__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.callout p {
    margin-bottom: 0;
    color: var(--ice-white);
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 20px;
    font-style: italic;
    color: var(--ice-white);
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .pull-quote {
        font-size: 22px;
    }
}

.pull-quote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: var(--mist-blue);
    margin-top: var(--space-sm);
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: 12px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cyan);
    margin-bottom: var(--space-sm);
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: var(--ice-white);
}

.summary-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md) 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--mist-blue);
}

.trust-badge--gold {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   PAYMENT METHODS STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: var(--space-md) 0;
}

.payment-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mist-blue);
    min-height: 44px;
}

/* ============================================
   GAME GRID - Thumbnails
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-tile {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--sapphire);
    aspect-ratio: 3 / 4;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
}

.game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 17, 31, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-sm);
}

.game-tile__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ice-white);
}

/* ============================================
   PROVIDER LOGO STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
}

.provider-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ice-white);
    min-height: 48px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.provider-logo:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.split-layout__image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.split-layout__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CATEGORY TAGS
   ============================================ */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: var(--space-sm) 0;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    color: var(--ice-white);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.category-tag:hover {
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.08);
}

/* ============================================
   FEATURE CARD
   ============================================ */
.feature-card {
    background: var(--navy-steel);
    border: 1px solid var(--sapphire);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
}

.feature-card__icon {
    font-size: 32px;
    margin-bottom: var(--space-sm);
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 15px;
    color: var(--mist-blue);
    line-height: 1.5;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SR-ONLY - Screen reader only
   ============================================ */
.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;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero__pulse::after,
    .cashback-pulse::after,
    .cta-banner__pulse::after {
        animation: none;
    }
}

/* ============================================
   HOMEPAGE - Hero image position & artwork tiles
   ============================================ */
.hero__bg {
    object-position: center 20%;
}

@media (min-width: 1024px) {
    .hero__bg {
        object-position: 72% center;
    }
}

.game-tile--art {
    background: radial-gradient(ellipse at 50% 32%, #1d3a5f 0%, var(--navy-steel) 72%);
}

.game-tile--art img {
    object-fit: contain;
    padding: 18px;
}

/* ============================================
   PAYMENT & TRUST LOGO STRIP (image logos)
   ============================================ */
.pay-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
}

.pay-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: var(--secondary);
    border: 1px solid var(--sapphire);
    border-radius: 10px;
    min-height: 60px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.pay-strip__item:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.pay-strip__item img {
    height: 32px;
    width: auto;
    display: block;
}

.pay-strip__item--seal img {
    height: 42px;
}

/* ============================================
   BODY SCROLL LOCK (mobile menu open)
   ============================================ */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sitemap-list__item {
    background: var(--navy-steel);
    border: 1px solid var(--sapphire);
    border-radius: 14px;
    padding: var(--space-md);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.sitemap-list__item:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.sitemap-list__title {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ice-white);
    margin-bottom: 8px;
}

.sitemap-list__title:hover {
    color: var(--cyan);
}

.sitemap-list__desc {
    font-size: 15px;
    color: var(--mist-blue);
    line-height: 1.58;
    margin-bottom: 0;
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ============================================
   LIGHT THEME - Applied via .light class or
   [data-theme="light"] on the root element.
   All component styles reference var() tokens,
   so swapping the token values re-themes every
   surface (body, sections, cards, header, footer).
   ============================================ */
.light,
[data-theme="light"] {
    --background: #f3f8fd;
    --foreground: #14273e;
    --card: #ffffff;
    --card-foreground: #14273e;
    --popover: #ffffff;
    --popover-foreground: #14273e;
    --secondary: #e3edf7;
    --secondary-foreground: #14273e;
    --muted: #e3edf7;
    --muted-foreground: #4c6178;
    --border: #c2d4e8;
    --input: #ffffff;
    --ring: #0e9bbd;

    --cyan: #0e9bbd;
    --gold: #a97e14;
    --navy-deep: #e2ecf7;
    --navy-mid: #eaf2fa;
    --navy-steel: #ffffff;
    --sapphire: #c2d4e8;
    --ice-white: #0e2138;
    --mist-blue: #4c6178;
}

/* Light theme - hardcoded dark surfaces and overlays */
.light .site-header,
[data-theme="light"] .site-header {
    background: rgba(243, 248, 253, 0.95);
}

.light .hero__bg,
[data-theme="light"] .hero__bg {
    opacity: 0.22;
}

.light .hero__overlay,
[data-theme="light"] .hero__overlay {
    background: linear-gradient(135deg, rgba(243, 248, 253, 0.88) 0%, rgba(243, 248, 253, 0.55) 50%, rgba(243, 248, 253, 0.78) 100%);
}

.light .game-tile__overlay,
[data-theme="light"] .game-tile__overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(243, 248, 253, 0.92) 100%);
}

.light .game-tile--art,
[data-theme="light"] .game-tile--art {
    background: radial-gradient(ellipse at 50% 32%, #d9e8f6 0%, var(--navy-steel) 72%);
}

.light .bonus-card__term,
[data-theme="light"] .bonus-card__term {
    border-bottom-color: rgba(20, 39, 62, 0.12);
}

.light .bonus-card:hover,
[data-theme="light"] .bonus-card:hover {
    box-shadow: 0 8px 32px rgba(14, 155, 189, 0.18);
}

.light .faq-item[open],
[data-theme="light"] .faq-item[open] {
    box-shadow: 0 0 0 1px rgba(14, 155, 189, 0.25), 0 4px 20px rgba(14, 155, 189, 0.1);
}

.light .faq-item__question:hover,
[data-theme="light"] .faq-item__question:hover {
    background: rgba(14, 155, 189, 0.08);
}

.light .btn--secondary:hover,
[data-theme="light"] .btn--secondary:hover {
    background: rgba(14, 155, 189, 0.1);
}

.light .category-tag:hover,
[data-theme="light"] .category-tag:hover {
    background: rgba(14, 155, 189, 0.1);
}
