/* ============================================
   IRWIN CASINO - RETRO-ARCADE DESIGN SYSTEM
   Mobile-first. Dark by default.
   ============================================ */

:root {
    --background: #0f0a2e;
    --foreground: #f5f0ff;
    --card: #1c1545;
    --card-foreground: #f5f0ff;
    --popover: #1c1545;
    --popover-foreground: #f5f0ff;
    --primary: #e26bff;
    --primary-foreground: #050118;
    --secondary: #2a1f5c;
    --secondary-foreground: #f5f0ff;
    --muted: #2a1f5c;
    --muted-foreground: #c9b8e8;
    --accent: #39ff14;
    --accent-foreground: #0f0a2e;
    --destructive: #ff5577;
    --destructive-foreground: #ffffff;
    --border: #3d2f6e;
    --input: #2a1f5c;
    --ring: #c026ff;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1280px;
    --header-h: 64px;

    --font-display: "Press Start 2P", "Courier New", monospace;
    --font-body: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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 { max-width: 100%; overflow-x: auto; }
.table-wrapper { 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
   ============================================ */
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(124, 31, 217, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(57, 255, 20, 0.05), transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@media (min-width: 1024px) {
    body { font-size: 17px; }
}

a { color: var(--primary); text-decoration: none; transition: color 180ms ease; }
a:hover { color: var(--accent); }

/* In-text links must be distinguishable beyond color (WCAG 1.4.1) */
p a, li a, td a, .faq-answer a, .callout a, .tldr-box a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: var(--accent);
}
p a:hover, li a:hover, td a:hover, .faq-answer a:hover, .callout a:hover, .tldr-box a:hover {
    text-decoration-color: currentColor;
}

ul, ol { padding-left: 1.25rem; }
img { display: block; }

/* ============================================
   TYPOGRAPHY - Press Start 2P display + Space Grotesk body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    text-transform: uppercase;
}

h1 { font-size: clamp(28px, 5vw, 56px); }
h2 { font-size: clamp(22px, 3.6vw, 40px); }
h3 { font-size: clamp(16px, 2vw, 22px); }
h4 { font-size: 16px; }

.neon-text {
    color: var(--foreground);
    text-shadow:
        0 0 6px rgba(57, 255, 20, 0.6),
        0 0 14px rgba(192, 38, 255, 0.45);
}

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

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--accent);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 680px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 12px 16px;
    z-index: 2000;
    font-family: var(--font-display);
    font-size: 12px;
}
.skip-link:focus { top: 0; }

/* Scanline overlay (decorative) */
.scanline-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    mix-blend-mode: overlay;
    opacity: 0.4;
    z-index: 1;
}

/* ============================================
   LAYOUT - Container & sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}
@media (min-width: 768px) {
    .container { padding: 0 var(--space-md); }
}

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

.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header .lead { margin-left: auto; margin-right: auto; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 10, 46, 0.92);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 0 rgba(57, 255, 20, 0.15);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .header-inner { padding: 0 var(--space-md); }
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--foreground);
    text-decoration: none;
}
.site-brand .logo {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 6px rgba(192, 38, 255, 0.6));
}
.brand-text {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--foreground);
}
.brand-text-accent { color: var(--accent); }

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    justify-content: flex-end;
}
@media (min-width: 1024px) {
    .primary-nav { display: flex; }
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.nav-link {
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: all 200ms ease;
}
.nav-link:hover, .nav-link:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--foreground);
    transition: transform 200ms ease, opacity 200ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: var(--space-md);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 250ms ease-out;
    }
    .primary-nav.is-open {
        display: flex;
        transform: translateX(0);
    }
    .primary-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .primary-nav .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 12px;
        padding: 16px 8px;
        border-bottom: none;
    }
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
        margin-top: var(--space-md);
    }
    .nav-actions .btn { width: 100%; min-height: 48px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 20px;
    min-height: 48px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 200ms ease, background 200ms ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 0 rgba(192, 38, 255, 0);
}
.btn-primary:hover {
    background: #d445ff;
    box-shadow: 0 0 16px rgba(192, 38, 255, 0.55);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
}
.btn-accent:hover {
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.7);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    font-size: 13px;
    padding: 18px 28px;
    min-height: 56px;
}

.btn-block { width: 100%; }

.btn-pulse { animation: coinPulse 1.8s ease-in-out infinite; }
@keyframes coinPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(57, 255, 20, 0); }
    50% { box-shadow: 0 0 22px rgba(57, 255, 20, 0.6); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 10, 46, 0) 0%, rgba(15, 10, 46, 0.6) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(192, 38, 255, 0.35), transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(57, 255, 20, 0.18), transparent 55%);
    border-bottom: 2px solid var(--border);
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-2xl) 0; }
}
.hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); }
}
.hero h1 {
    font-size: clamp(26px, 4.5vw, 48px);
    color: var(--foreground);
    text-shadow:
        2px 2px 0 rgba(124, 31, 217, 0.4),
        0 0 18px rgba(57, 255, 20, 0.45);
    margin-bottom: var(--space-md);
}
.hero-art {
    position: relative;
    text-align: center;
}
.hero-art img {
    max-height: 480px;
    width: auto;
    margin: 0 auto;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 24px rgba(192, 38, 255, 0.5));
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* Marquee ticker */
.marquee {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    padding: 12px 0;
    margin-top: var(--space-lg);
}
.marquee-track {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent);
}
.marquee-track span { white-space: nowrap; }

/* ============================================
   CARDS - base
   ============================================ */
.card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    min-width: 0;
}
@media (min-width: 768px) {
    .card { padding: var(--space-lg); }
}
.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.25);
}

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 22px rgba(57, 255, 20, 0.3);
}
.game-card-art {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--secondary);
    overflow: hidden;
}
.game-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}
.game-card:hover .scanline-overlay { opacity: 0.7; }
.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}
.game-card-body {
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}
.game-card-title {
    font-family: var(--font-display);
    font-size: 12px;
    margin: 0;
    color: var(--foreground);
    line-height: 1.4;
}
.game-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}
.game-card .btn { margin-top: auto; }

.game-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    overflow: hidden;
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease;
    min-width: 0;
}
@media (min-width: 768px) {
    .bonus-card { padding: var(--space-lg); }
}
.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(192, 38, 255, 0.35);
}
.bonus-card-strip {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #f0f, var(--accent));
}
.bonus-card-figure {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    padding-top: var(--space-sm);
}
.bonus-figure {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 64px);
    color: var(--accent);
    line-height: 1;
    text-shadow:
        2px 2px 0 rgba(124, 31, 217, 0.6),
        0 0 18px rgba(57, 255, 20, 0.5);
}
.bonus-figure-suffix {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.4vw, 22px);
    color: var(--foreground);
}
.bonus-card-name {
    font-family: var(--font-display);
    font-size: 12px;
    margin: 0;
    color: var(--foreground);
    text-transform: uppercase;
}
.bonus-card-terms {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--muted-foreground);
}
.bonus-card-terms li::before {
    content: "▸ ";
    color: var(--accent);
}
.bonus-disclaimer {
    display: block;
    font-size: 11px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

.bonus-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 160px;
    justify-content: center;
    min-width: 0;
}
.stat-block-accent { border-color: var(--accent); }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    color: var(--accent);
    line-height: 1.05;
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.5);
}
.stat-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
}
.stat-source {
    font-size: 11px;
    color: var(--muted-foreground);
}

.stat-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.stat-grid-3 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) {
    .stat-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .stat-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 56px;
    transition: background 180ms ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(192, 38, 255, 0.08); }
.faq-question-text {
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1.5;
    color: var(--foreground);
    text-transform: uppercase;
    flex: 1;
}
.faq-toggle-icon {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 4px;
    transition: transform 200ms ease;
    flex-shrink: 0;
}
.faq-item[open] .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}
.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background:
        linear-gradient(90deg, rgba(124, 31, 217, 0.85), rgba(192, 38, 255, 0.6)),
        var(--card);
    padding: var(--space-xl) 0;
    overflow: hidden;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-2xl) 0; }
}
.cta-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    .cta-banner-inner {
        padding: 0 var(--space-md);
        grid-template-columns: auto 1fr;
        text-align: left;
    }
}
.cta-banner-art img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 18px rgba(57, 255, 20, 0.55));
}
.cta-banner-headline {
    font-size: clamp(22px, 4vw, 40px);
    color: #fff;
    text-shadow: 0 0 18px rgba(57, 255, 20, 0.6);
    margin-bottom: var(--space-sm);
}
.cta-banner-subline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-md);
}
.cta-banner-disclaimer {
    display: block;
    margin-top: var(--space-xs);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PROVIDER LOGO STRIP
   ============================================ */
.provider-strip {
    position: relative;
    background: var(--secondary);
    padding: var(--space-lg) 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.provider-strip-title {
    text-align: center;
    margin: 0 auto var(--space-lg);
    padding: 0 var(--space-sm);
    max-width: var(--max-width);
    font-size: clamp(18px, 2.6vw, 26px);
}
.provider-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    gap: var(--space-xs);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}
@media (min-width: 640px) {
    .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .provider-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 0 var(--space-md);
    }
}
@media (min-width: 1024px) {
    .provider-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
.provider-tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transition: border-color 200ms ease, transform 200ms ease;
    filter: grayscale(0.6) brightness(1.2);
}
.provider-tile:hover {
    border-color: var(--accent);
    filter: none;
    transform: translateY(-2px);
}
.provider-tile img {
    max-height: 40px;
    width: auto;
}
.provider-name {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--foreground);
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0720;
    border-top: 2px solid var(--accent);
    color: var(--foreground);
    margin-top: var(--space-2xl);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-sm);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .footer-inner {
        padding: var(--space-xl) var(--space-md);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}
.footer-tagline {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: var(--space-md);
}
.footer-heading {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--foreground);
    font-size: 15px;
    transition: color 180ms ease;
}
.footer-links a:hover { color: var(--accent); }

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    background: rgba(57, 255, 20, 0.08);
}
.license-badge strong {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent);
    display: block;
}
.license-badge small {
    font-size: 11px;
    color: var(--muted-foreground);
}
.license-icon {
    font-size: 20px;
    color: var(--accent);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--foreground);
    min-height: 32px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}
.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom-inner {
        padding: var(--space-md);
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}
.responsible-gaming {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted-foreground);
}
.responsible-gaming p { margin: 0; }
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--destructive);
    color: var(--destructive);
    font-family: var(--font-display);
    font-size: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.copyright {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: rgba(57, 255, 20, 0.06);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}
.tldr-box h3 {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: var(--card);
    border: 2px solid var(--primary);
    border-left-width: 6px;
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}
.callout-warning { border-color: var(--destructive); }
.callout-tip { border-color: var(--accent); }
.callout strong {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    margin-bottom: var(--space-xs);
    color: var(--accent);
    text-transform: uppercase;
}
.callout-warning strong { color: var(--destructive); }
.callout-tip strong { color: var(--accent); }

.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 19px;
    font-style: italic;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--muted-foreground);
    font-style: normal;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}
.trust-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--foreground);
}

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin: var(--space-md) 0;
}
.table-wrapper[tabindex="0"]:focus,
.table-wrapper[tabindex="0"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.table-wrapper:focus,
.table-wrapper:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}
th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
thead th {
    background: var(--secondary);
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
}
tbody tr:hover { background: rgba(192, 38, 255, 0.06); }
.col-highlight { background: rgba(57, 255, 20, 0.08); }

/* Testimonials */
.testimonial-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    min-width: 0;
}
.testimonial-card blockquote {
    margin: 0 0 var(--space-sm);
    font-size: 15px;
    color: var(--foreground);
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted-foreground);
}
.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
}

/* Steps */
.steps {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
    counter-reset: step;
    list-style: none;
    padding: 0;
}
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.step {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    position: relative;
    counter-increment: step;
}
.step::before {
    content: counter(step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}
.step h3 {
    font-size: 12px;
    margin-bottom: var(--space-xs);
}

/* Two column layouts */
.two-col {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

/* Anchor / nav hub cards */
.hub-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .hub-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hub-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-decoration: none;
    color: var(--foreground);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    min-width: 0;
}
.hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.3);
    color: var(--foreground);
}
.hub-card-icon {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
}
.hub-card h3 {
    font-size: 12px;
    margin: 0 0 4px;
    color: var(--foreground);
}
.hub-card p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* Pros / Cons lists */
.proscons {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .proscons { grid-template-columns: 1fr 1fr; }
}
.pros, .cons {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    list-style: none;
}
.pros { border-left: 4px solid var(--accent); }
.cons { border-left: 4px solid var(--destructive); }
.pros li, .cons li {
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    gap: 8px;
}
.pros li::before { content: "✓"; color: var(--accent); font-weight: bold; }
.cons li::before { content: "✗"; color: var(--destructive); font-weight: bold; }

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Sitemap list */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.sitemap-entry {
    background: var(--card);
    border: 2px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md);
}
.sitemap-entry h3 {
    font-size: 13px;
    margin-bottom: var(--space-xs);
}
.sitemap-entry h3 a { color: var(--accent); }
.sitemap-entry p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: 13px;
    color: var(--muted-foreground);
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumbs li::after { content: "▸"; margin-left: 6px; color: var(--accent); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--accent); }

/* Prose content */
.prose h2, .prose h3 { margin-top: var(--space-lg); }
.prose ul, .prose ol { margin: 0 0 var(--space-md); padding-left: 1.5rem; }
.prose li { margin-bottom: 6px; }