/*
 * JACK CASINO - DESIGN SYSTEM
 * Dark, neon-charged crypto-casino aesthetic
 * Mobile-first, single fixed dark theme
 */

/* ============================================
   DESIGN TOKENS
   Single dark theme - no toggle
   ============================================ */
:root {
    --background: #0A0E17;
    --foreground: #EDF2F7;
    --card: #131A2A;
    --card-foreground: #EDF2F7;
    --popover: #101827;
    --popover-foreground: #EDF2F7;
    --primary: #2BEE7B;
    --primary-foreground: #07130C;
    --secondary: #1E2A3F;
    --secondary-foreground: #EDF2F7;
    --muted: #223048;
    --muted-foreground: #9AA7BF;
    --accent: #F5C542;
    --accent-foreground: #211800;
    --destructive: #FF5470;
    --destructive-foreground: #2A0710;
    --border: #31435F;
    --input: #0D1422;
    --ring: #4590ff;

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

    /* Spacing scale (8px base grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;

    /* Radii */
    --radius-card: 14px;
    --radius-pill: 999px;

    /* Container */
    --container-max: 1180px;

    /* Gradients */
    --gradient-gold-green: linear-gradient(135deg, #F5C542 0%, #2BEE7B 100%);
    --gradient-green-gold: linear-gradient(135deg, #2BEE7B 0%, #F5C542 100%);
    --gradient-border-anim: linear-gradient(90deg, #2BEE7B, #F5C542, #2BEE7B);

    /* Shadows */
    --shadow-glow: 0 0 24px rgba(43, 238, 123, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.dark {
    --background: #0A0E17;
    --foreground: #EDF2F7;
    --card: #131A2A;
    --card-foreground: #EDF2F7;
    --popover: #101827;
    --popover-foreground: #EDF2F7;
    --primary: #2BEE7B;
    --primary-foreground: #07130C;
    --secondary: #1E2A3F;
    --secondary-foreground: #EDF2F7;
    --muted: #223048;
    --muted-foreground: #9AA7BF;
    --accent: #F5C542;
    --accent-foreground: #211800;
    --destructive: #FF5470;
    --destructive-foreground: #2A0710;
    --border: #31435F;
    --input: #0D1422;
    --ring: #4590ff;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 250ms ease-out;
}

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

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

section {
    overflow: clip;
}

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

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

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

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

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

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

p {
    margin-bottom: 16px;
}

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

strong {
    color: var(--foreground);
    font-weight: 600;
}

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

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

.section--lifted {
    background: var(--card);
}

.section--alt {
    background: rgba(19, 26, 42, 0.5);
}

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

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

    h1 { font-size: 52px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
}

/* ============================================
   HEADER
   Glassy dark blur, sticky, brand + nav + CTA
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    border-bottom: 1px solid var(--border);
}

/* Backdrop-filter only on desktop: on mobile it would make the
   fixed-position nav drawer resolve against the header instead
   of the viewport, collapsing the open menu to a 48px strip. */
@media (min-width: 1024px) {
    .site-header {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

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

@media (min-width: 768px) {
    .header-inner {
        padding: 0 var(--space-lg);
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
    flex-shrink: 0;
}

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

.site-brand__bolt {
    font-size: 22px;
    background: var(--gradient-gold-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PRIMARY NAVIGATION
   Desktop: inline centered. Mobile: drawer.
   ============================================ */
.primary-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: var(--space-md);
}

.primary-nav.is-open {
    display: flex;
    visibility: visible;
    transform: none;
}

.primary-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px var(--space-sm);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--foreground);
    border-radius: var(--radius-card);
    transition: background 250ms ease-out, color 250ms ease-out;
}

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

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        overflow: visible;
        padding: 0;
        background: transparent;
    }

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

    .primary-nav__list a {
        min-height: auto;
        padding: 8px 0;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 2px solid transparent;
    }

    .primary-nav__list a:hover {
        background: transparent;
        border-bottom-color: var(--primary);
        color: var(--primary);
    }

    .primary-nav__actions {
        flex-direction: row;
        gap: var(--space-sm);
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

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

/* ============================================
   MOBILE MENU TOGGLE
   Hamburger → X animation
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    padding: 0 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms ease-out, opacity 250ms ease-out;
}

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

/* ============================================
   BUTTONS
   Pill-shaped, neon green primary, ghost secondary
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: filter 250ms ease-out, transform 250ms ease-out, background 250ms ease-out, border-color 250ms ease-out;
    white-space: nowrap;
}

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

.btn--primary:hover {
    filter: brightness(1.1);
    color: var(--primary-foreground);
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

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

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

/* ============================================
   HERO SECTION
   Full-bleed, dark crypto-grid, model imagery
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: clip;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,14,23,0.9) 0%, rgba(10,14,23,0.6) 50%, rgba(10,14,23,0.85) 100%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(43, 238, 123, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 238, 123, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

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

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

.hero__subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

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

.hero__model {
    display: none;
}

.hero__model img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-3xl) 0;
    }

    .hero__title {
        font-size: 52px;
    }

    .hero__actions {
        flex-direction: row;
        gap: var(--space-md);
    }

    .hero__model {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

/* ============================================
   LIVE TICKER
   Scrolling strip of live bets / wins
   ============================================ */
.live-ticker {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
    overflow: hidden;
}

.live-ticker__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--destructive);
    padding: 0 var(--space-lg);
    white-space: nowrap;
}

.live-ticker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--destructive);
    animation: pulse-dot 2s ease-in-out infinite;
}

.live-ticker__strip {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 var(--space-lg);
}

.live-ticker__strip::-webkit-scrollbar {
    display: none;
}

.live-ticker__item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    color: var(--muted-foreground);
    flex-shrink: 0;
}

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

.live-ticker__item .win {
    color: var(--primary);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   STAT BLOCK
   Large gradient numbers with labels
   ============================================ */
.stat-block-section {
    padding: var(--space-2xl) 0;
}

.stat-block {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-lg) 0;
}

.stat-block::-webkit-scrollbar {
    display: none;
}

.stat-item {
    flex: 1 1 200px;
    min-width: 200px;
    text-align: center;
    padding: var(--space-md);
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    background: var(--gradient-gold-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-item__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .stat-block {
        overflow: visible;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
    }
}

/* ============================================
   INFO CARDS
   Dark slate cards with neon hover
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

@media (min-width: 1024px) {
    .info-card-grid {
        grid-template-columns: repeat(var(--grid-cols, 3), minmax(0, 1fr));
    }
}

.info-card {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 20px;
    border: 1px solid transparent;
    transition: transform 250ms ease-out, border-color 250ms ease-out, box-shadow 250ms ease-out;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.info-card__image {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.info-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-card__icon {
    font-size: 36px;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.info-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.info-card__description {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.info-card__link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-start;
}

.info-card__link:hover {
    color: var(--accent);
}

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

/* ============================================
   CTA BANNER
   Lifted charcoal panel with animated gradient border
   ============================================ */
.cta-banner-section {
    padding: var(--space-2xl) 0;
}

.cta-banner {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-card);
    padding: var(--space-2xl) var(--space-lg);
    overflow: clip;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.cta-banner__border {
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: var(--radius-card);
    background: var(--gradient-border-anim);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-pan 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

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

.cta-banner__headline {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.cta-banner__subline {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

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

.cta-banner__image {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.cta-banner__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
}

@keyframes border-pan {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (min-width: 1024px) {
    .cta-banner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-2xl) var(--space-2xl);
    }

    .cta-banner__content {
        flex: 1;
        padding-right: var(--space-2xl);
        max-width: 600px;
    }

    .cta-banner__headline {
        font-size: 32px;
    }

    .cta-banner__image {
        flex-shrink: 0;
    }
}

/* ============================================
   FAQ ACCORDION
   Expandable details/summary panels
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    overflow: hidden;
    transition: border-color 250ms ease-out;
}

.faq-item[open] {
    border-left-color: var(--primary);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    min-height: 48px;
}

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

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

.faq-item__icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 250ms ease-out;
    line-height: 1;
}

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

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

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR Box */
.summary-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

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

.summary-box p {
    font-size: 16px;
    color: var(--foreground);
}

/* Callout / Highlight Box */
.callout {
    background: var(--secondary);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border: 1px solid var(--border);
    position: relative;
}

.callout--tip {
    border-left: 3px solid var(--primary);
}

.callout--warning {
    border-left: 3px solid var(--accent);
}

.callout--info {
    border-left: 3px solid var(--ring);
}

.callout__title {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    padding: var(--space-lg) 0;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    background: var(--gradient-gold-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-highlight__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

.stat-highlight__source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
    font-style: italic;
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
    font-family: var(--font-body);
}

.pull-quote__cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
}

/* ============================================
   CRO PATTERNS
   ============================================ */

/* Trust Badges Row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
}

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

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

/* Social Proof Display */
.social-proof {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.social-proof__badge {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.social-proof__badge img {
    max-width: 200px;
    height: auto;
}

.social-proof__ratings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

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

.social-proof__score {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

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

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

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

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

.comparison-table .col-highlight {
    background: rgba(43, 238, 123, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table .col-highlight th {
    color: var(--primary);
}

/* ============================================
   FOOTER
   Four-column layout with crypto chips and legal
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.footer-brand__bolt {
    font-size: 22px;
    background: var(--gradient-gold-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 280px;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    font-size: 15px;
    color: var(--muted-foreground);
}

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

.crypto-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    filter: grayscale(1);
}

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

.footer-legal--warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal--warning strong {
    color: var(--destructive);
}

.footer-legal a {
    color: var(--ring);
    text-decoration: underline;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-sm);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 var(--space-lg);
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    margin-bottom: var(--space-xl);
}

.section-heading__kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.section-heading h2 {
    margin-bottom: var(--space-sm);
}

.section-heading p {
    color: var(--muted-foreground);
    max-width: 600px;
}

/* ============================================
   CONTENT TEXT BLOCKS
   ============================================ */
.content-text {
    max-width: 720px;
    margin: 0 auto;
}

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

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

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

.content-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-text a:hover {
    color: var(--accent);
}

.content-text ul, .content-text ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-text li {
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

/* ============================================
   ANIMATIONS
   Scroll-triggered fade-in slide-up
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Staggered grid items */
.info-card-grid .info-card:nth-child(1) { transition-delay: 0ms; }
.info-card-grid .info-card:nth-child(2) { transition-delay: 80ms; }
.info-card-grid .info-card:nth-child(3) { transition-delay: 160ms; }
.info-card-grid .info-card:nth-child(4) { transition-delay: 240ms; }
.info-card-grid .info-card:nth-child(5) { transition-delay: 320ms; }
.info-card-grid .info-card:nth-child(6) { transition-delay: 400ms; }

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

    .cta-banner__border {
        animation: none;
    }

    .live-ticker__dot {
        animation: none;
    }
}

/* ============================================
   HOMEPAGE SPECIFIC
   Hero badges, split grid, odds teaser, coins
   ============================================ */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-lg);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(30, 42, 63, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--muted-foreground);
}

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

.split-grid p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

.split-grid h2 {
    margin-bottom: var(--space-md);
}

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

/* Live odds teaser card */
.odds-teaser {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.odds-teaser__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--destructive);
}

.odds-teaser__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid rgba(49, 67, 95, 0.5);
    font-size: 14px;
}

.odds-teaser__row:last-child {
    border-bottom: none;
}

.odds-teaser__teams {
    display: block;
    color: var(--foreground);
    font-weight: 600;
}

.odds-teaser__meta {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
}

.odds-teaser__odds {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.odds-teaser__odd {
    padding: 6px 10px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ring);
    font-size: 13px;
}

/* Crypto coin grid */
.coin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.coin-grid__item {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: var(--space-md);
    transition: transform 250ms ease-out, border-color 250ms ease-out, box-shadow 250ms ease-out;
}

.coin-grid__item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.coin-grid__item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    display: block;
}

.coin-grid__item span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

/* Award badge */
.award-badge {
    max-width: 180px;
    margin: 0 auto;
    display: block;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

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