/*
 * Jack Casino - Design System
 * Dark-only theme with neon green/blue/gold crypto accents
 * Mobile-first responsive design
 */

:root {
    --background: #0b0f1a;
    --foreground: #e8ecf4;
    --card: #121829;
    --card-foreground: #e8ecf4;
    --popover: #0e1424;
    --popover-foreground: #e8ecf4;
    --primary: #22e584;
    --primary-foreground: #04120c;
    --secondary: #3d8bff;
    --secondary-foreground: #07101f;
    --muted: #1b2438;
    --muted-foreground: #9aa5bc;
    --accent: #f2b632;
    --accent-foreground: #1a1204;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2a3650;
    --input: #0e1526;
    --ring: #22e584;

    /* Typography */
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Layout */
    --max-w: 1200px;
    --header-h: 64px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --t-fast: 250ms ease-out;
    --t-med: 400ms ease-out;
}

.dark {
    --background: #0b0f1a;
    --foreground: #e8ecf4;
    --card: #121829;
    --card-foreground: #e8ecf4;
    --popover: #0e1424;
    --popover-foreground: #e8ecf4;
    --primary: #22e584;
    --primary-foreground: #04120c;
    --secondary: #3d8bff;
    --secondary-foreground: #07101f;
    --muted: #1b2438;
    --muted-foreground: #9aa5bc;
    --accent: #f2b632;
    --accent-foreground: #1a1204;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2a3650;
    --input: #0e1526;
    --ring: #22e584;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: var(--space-md);
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

p {
    margin: 0 0 var(--space-md);
    max-width: 70ch;
}

strong, b {
    font-weight: 700;
    color: var(--foreground);
}

/* Kicker label */
.kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   LAYOUT
   ============================================ */

.dark-neon-layout {
    min-height: 100vh;
}

.max-w-1200 {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

/* Section spacing */
section {
    overflow: clip;
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 26, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 54, 80, 0.5);
}

/* On mobile the fixed nav drawer lives inside the header; backdrop-filter
   would turn the header into a containing block and trap the drawer at
   header height, so it is disabled below the desktop breakpoint. */
@media (max-width: 1023px) {
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}

.site-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), #1ab568);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 12px rgba(34, 229, 132, 0.3);
}

.site-brand__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* ============================================
   PRIMARY NAV - mobile drawer
   ============================================ */

.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
}

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

.primary-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: background var(--t-fast), color var(--t-fast);
}

.primary-nav__list a:hover {
    background: var(--muted);
    color: var(--primary);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.primary-nav__actions .btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}

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

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

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

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

    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: none;
        padding: 0;
        gap: var(--space-xl);
        overflow: visible;
    }

    .primary-nav__list {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .primary-nav__list a {
        min-height: auto;
        padding: var(--space-xs) var(--space-sm);
        font-size: 16px;
    }

    .primary-nav__actions {
        flex-direction: row;
        gap: var(--space-md);
        margin-top: 0;
    }

    .primary-nav__actions .btn {
        width: auto;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 var(--space-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(34, 229, 132, 0.25);
}

.btn--primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(34, 229, 132, 0.45);
    transform: translateY(-1px);
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 182, 50, 0.3), transparent);
    transition: left 600ms ease-out;
}

.btn--primary:hover::after {
    left: 100%;
}

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

.btn--ghost:hover {
    color: var(--foreground);
    background: rgba(61, 139, 255, 0.1);
    border-color: var(--secondary);
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: 56px;
    overflow: clip;
    background: var(--background);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-h) + 120px);
        padding-bottom: 96px;
    }
}

.hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.hero__content {
    min-width: 0;
}

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

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

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

.hero__subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    max-width: 50ch;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .hero__buttons {
        flex-direction: row;
    }
}

.hero__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

.hero__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
    .hero__visual {
        aspect-ratio: 3 / 4;
    }
}

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

/* Neon energy streak */
.neon-streak {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(34, 229, 132, 0.15) 45%,
        rgba(61, 139, 255, 0.15) 55%,
        transparent 70%
    );
    transform: rotate(-15deg) translateX(-25%);
    pointer-events: none;
    animation: streak-drift 8s ease-in-out infinite alternate;
}

@keyframes streak-drift {
    0% { transform: rotate(-15deg) translateX(-25%); }
    100% { transform: rotate(-15deg) translateX(-15%); }
}

/* ============================================
   LIVE BETS FEED TICKER
   ============================================ */

.live-bets-feed {
    background: var(--card);
    border-top: 1px solid rgba(42, 54, 80, 0.5);
    border-bottom: 1px solid rgba(42, 54, 80, 0.5);
    padding: var(--space-lg) 0;
    overflow: clip;
}

.live-bets-feed__title {
    max-width: var(--max-w);
    margin: 0 auto var(--space-md);
    padding: 0 var(--space-lg);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.live-bets-feed__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.live-bet-card {
    background: var(--muted);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    border: 1px solid rgba(42, 54, 80, 0.4);
}

.live-bet-card__event {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
}

.live-bet-card__player {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.live-bet-card__amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.live-bet-card__multiplier {
    font-size: 13px;
    color: var(--accent);
    margin-left: var(--space-sm);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-header {
    max-width: var(--max-w);
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-lg);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--muted-foreground);
    font-size: 17px;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */

.stat-highlight {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

.stat-highlight__item {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

@media (min-width: 768px) {
    .stat-highlight__item {
        border-right: 1px solid rgba(42, 54, 80, 0.4);
    }
    .stat-highlight__item:last-child {
        border-right: none;
    }
}

.stat-highlight__kicker {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.stat-highlight__number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .stat-highlight__number {
        font-size: 56px;
    }
}

.stat-highlight__context {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Stat highlight inside card */
.stat-highlight--card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(42, 54, 80, 0.4);
    padding: var(--space-2xl) var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* ============================================
   PROMO CARD GRID
   ============================================ */

.promo-card-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .promo-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .promo-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.promo-card {
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 400ms ease-out, transform 400ms ease-out, border-color var(--t-fast), box-shadow var(--t-fast);
}

.promo-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .promo-card {
        padding: var(--space-xl);
    }
}

.promo-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(34, 229, 132, 0.15);
    transform: translateY(-4px) scale(1.02);
}

.promo-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(34, 229, 132, 0.12);
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 22px;
}

.promo-card__icon--gold {
    background: rgba(242, 182, 50, 0.12);
    color: var(--accent);
}

.promo-card__icon--blue {
    background: rgba(61, 139, 255, 0.12);
    color: var(--secondary);
}

.promo-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.promo-card__text {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.promo-card__link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--t-fast);
}

.promo-card__link:hover {
    color: var(--primary);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    position: relative;
    padding-top: 56px;
    padding-bottom: 56px;
    background: var(--background);
    overflow: clip;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.cta-banner__streak {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 35%,
        rgba(34, 229, 132, 0.12) 45%,
        rgba(61, 139, 255, 0.12) 55%,
        transparent 65%
    );
    transform: rotate(-8deg);
    pointer-events: none;
    animation: streak-drift 10s ease-in-out infinite alternate;
}

.cta-banner__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(242, 182, 50, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(34, 229, 132, 0.3), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(242, 182, 50, 0.3), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(61, 139, 255, 0.3), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(242, 182, 50, 0.2), transparent);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.cta-banner__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .cta-banner__title {
        font-size: 36px;
    }
}

.cta-banner__subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.cta-banner__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .cta-banner__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-accordion {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--t-med);
}

.faq-item--active {
    border-color: var(--primary);
    border-left: 3px solid var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    text-align: left;
    transition: color var(--t-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question__text {
    flex: 1;
    padding-right: var(--space-md);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--t-med);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 24px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
}

.faq-item--active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med);
}

.faq-item--active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */

.content-block {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.content-block p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

.content-block p a {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: rgba(61, 139, 255, 0.4);
    text-underline-offset: 3px;
    transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

.content-block p a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

/* ============================================
   SUMMARY / CALLOUT BOX
   ============================================ */

.callout {
    max-width: var(--max-w);
    margin: 0 auto var(--space-2xl);
    padding: var(--space-xl);
    background: var(--card);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
}

.callout--warning {
    border-left-color: var(--accent);
}

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

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

.callout--warning .callout__title {
    color: var(--accent);
}

.callout--info .callout__title {
    color: var(--secondary);
}

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

/* ============================================
   PAYMENTS GRID
   ============================================ */

.payments-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.payment-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 16px rgba(61, 139, 255, 0.1);
}

.payment-item__icon {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
}

.payment-item__name {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST / LICENSE BADGES
   ============================================ */

.trust-badges {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    color: var(--primary);
    font-size: 18px;
}

.trust-badge--accent .trust-badge__icon {
    color: var(--accent);
}

/* ============================================
   GAME PREVIEW GRID
   ============================================ */

.game-preview-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.game-preview-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: radial-gradient(circle at 50% 40%, rgba(61, 139, 255, 0.12), transparent 70%), var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
}

.game-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-lg);
    display: block;
}

.game-preview-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(11, 15, 26, 0.9));
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
}

/* ============================================
   LIVE ODDS PREVIEW (hero widget)
   ============================================ */

.odds-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.odds-preview__row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(18, 24, 41, 0.85);
    border: 1px solid rgba(42, 54, 80, 0.5);
    border-radius: var(--radius-sm);
}

.odds-preview__event {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.odds-preview__live {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(34, 229, 132, 0.7);
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.odds-preview__odd {
    min-width: 52px;
    padding: 4px var(--space-sm);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    background: rgba(34, 229, 132, 0.1);
    border-radius: 6px;
}

.odds-preview__odd--muted {
    color: var(--muted-foreground);
    background: rgba(154, 165, 188, 0.08);
}

/* ============================================
   SPLIT FEATURE (image + text)
   ============================================ */

.split-feature {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .split-feature {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

.split-feature__media {
    display: flex;
    justify-content: center;
}

.split-feature__media img {
    max-width: 360px;
    width: 100%;
    filter: drop-shadow(0 24px 48px rgba(34, 229, 132, 0.15));
}

.split-feature__text h3 {
    margin-bottom: var(--space-md);
}

.split-feature__text p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    max-width: 60ch;
}

/* ============================================
   INLINE IMAGE BLOCK
   ============================================ */

.inline-image {
    max-width: var(--max-w);
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-lg);
}

.inline-image__figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(42, 54, 80, 0.4);
}

.inline-image__figure img {
    width: 100%;
    display: block;
}

.inline-image__caption {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    text-align: center;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: var(--space-2xl);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 0;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(42, 54, 80, 0.4);
    font-size: 15px;
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted);
}

.comparison-table td {
    color: var(--muted-foreground);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table__highlight {
    background: rgba(34, 229, 132, 0.06);
}

.comparison-table__highlight th {
    color: var(--primary);
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.sitemap-list a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary);
    text-decoration: none;
}

.sitemap-list a:hover {
    color: var(--primary);
}

.sitemap-list p {
    margin-top: var(--space-sm);
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--popover);
    border-top: 1px solid rgba(42, 54, 80, 0.5);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-xl);
}

.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

.site-footer__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
    max-width: 40ch;
}

.site-footer__heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.site-footer__list a {
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--t-fast);
}

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

.crypto-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.crypto-payments__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-md);
    background: var(--muted);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--accent);
}

.site-footer__bottom {
    max-width: var(--max-w);
    margin: var(--space-2xl) auto 0;
    padding: var(--space-lg) var(--space-lg) 0;
    border-top: 1px solid rgba(42, 54, 80, 0.4);
    text-align: center;
}

.site-footer__license {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.site-footer__copyright {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .neon-streak,
    .cta-banner__streak {
        animation: none;
    }

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

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

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

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

/* ============================================
   UTILITY
   ============================================ */

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

.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-green { color: var(--primary); }
.text-blue { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }

/* 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;
}

/* ============================================
   STEPS LIST (numbered process)
   ============================================ */

.steps-list {
    max-width: var(--max-w);
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-lg);
    counter-reset: step;
}

.steps-list li {
    position: relative;
    list-style: none;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 72px;
    background: var(--card);
    border: 1px solid rgba(42, 54, 80, 0.4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    transition: border-color var(--t-fast);
}

.steps-list li:hover {
    border-color: var(--primary);
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: var(--space-lg);
    top: var(--space-lg);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(34, 229, 132, 0.12);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
}

.steps-list li strong {
    color: var(--foreground);
}
