/* ============================================
   Golisimo Casino - Design System
   Dark stadium-night aesthetic: penalty under floodlights.
   Fonts: Anton (display) + Barlow (body)
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Dark-only theme - no light/dark switcher.
   Colors evoke a football stadium under floodlights.
   ============================================ */
:root {
    --background: #0A0A0A;
    --foreground: #F0F4F0;
    --card: #141414;
    --card-foreground: #F0F4F0;
    --popover: #141414;
    --popover-foreground: #F0F4F0;
    --primary: #39FF14;
    --primary-foreground: #0A0A0A;
    --secondary: #FFD700;
    --secondary-foreground: #0A0A0A;
    --muted: #3C4148;
    --muted-foreground: #a0aec0;
    --accent: #456a00;
    --accent-foreground: #0A0A0A;
    --destructive: #ea1414;
    --destructive-foreground: #FFFFFF;
    --border: #2A2A2A;
    --input: #141414;
    --ring: #39FF14;

    /* Layout tokens */
    --header-height: 64px;
    --max-width: 1200px;
    --max-width-narrow: 800px;
    --section-gap: 64px;
    --component-padding: 24px;

    /* Font families */
    --font-display: "Anton", "Arial Narrow", sans-serif;
    --font-body: "Barlow", system-ui, sans-serif;
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
        --section-gap: 120px;
        --component-padding: 40px;
    }
}

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

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

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

h1 {
    font-size: clamp(28px, 6vw, 48px);
}

h2 {
    font-size: clamp(24px, 5vw, 36px);
}

h3 {
    font-size: clamp(20px, 4vw, 26px);
}

h4 {
    font-size: clamp(18px, 3vw, 22px);
}

p {
    margin: 0 0 28px 0;
    line-height: 1.6;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul, ol {
    margin: 0 0 28px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

img {
    display: block;
}

figure {
    margin: 32px 0;
}

figcaption {
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 12px;
}

blockquote {
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--primary);
    background: rgba(57, 255, 20, 0.03);
    font-style: italic;
    font-size: 18px;
}

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

blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

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

mark {
    background: rgba(57, 255, 20, 0.15);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 3px;
}

code {
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    background: var(--card);
    padding: 2px 6px;
    border-radius: 3px;
}

pre {
    background: var(--card);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    max-width: 100%;
}

pre code {
    background: none;
    padding: 0;
}

/* ============================================
   FOCUS & SELECTION
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -48px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 9999;
    font-family: var(--font-body);
    font-weight: 600;
    transition: top 0.3s ease;
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.section {
    padding: var(--section-gap) 24px;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--section-gap) 48px;
    }
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 16px;
}

.section-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
    max-width: 700px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

#main-content {
    scroll-margin-top: var(--header-height);
}

section[id],
.prose h2[id],
.prose h3[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

/* ============================================
   PROSE - readable text content
   Max-width 800px for comfortable reading.
   ============================================ */
.prose {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.prose p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--foreground);
}

.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-top: 64px;
    margin-bottom: 24px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 26px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--primary);
    margin-top: 48px;
    margin-bottom: 16px;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

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

.prose ul, .prose ol {
    margin-bottom: 28px;
}

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

.prose blockquote {
    margin: 32px 0;
    padding: 24px;
    border-left: 4px solid var(--primary);
    background: rgba(57, 255, 20, 0.03);
    font-style: italic;
    font-size: 18px;
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

.prose blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with logo, nav, and CTA buttons.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--foreground);
    white-space: nowrap;
}

/* ============================================
   PRIMARY NAV - dual-purpose: inline (desktop) / drawer (mobile)
   ============================================ */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px;
    flex-direction: column;
}

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

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-list li {
    border-bottom: 1px solid var(--border);
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 16px 0;
    color: var(--foreground);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.nav-ctas .btn-login,
.nav-ctas .btn-register {
    text-align: center;
    justify-content: center;
}

/* Desktop navigation - inline */
@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        z-index: auto;
        overflow: visible;
        padding: 0;
        gap: 32px;
    }

    .nav-list {
        flex-direction: row;
        gap: 24px;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-list a {
        min-height: auto;
        padding: 0;
        font-size: 16px;
    }

    .nav-ctas {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
        margin-left: auto;
    }
}

/* ============================================
   MOBILE MENU TOGGLE - hamburger button
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    color: var(--secondary);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 24px;
    color: var(--foreground);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.btn-register:hover {
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
    color: var(--primary-foreground);
}

/* ============================================
   HERO - full-bleed with floodlight gradients
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: clip;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(57, 255, 20, 0.12) 0%, transparent 40%, rgba(255, 215, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: 32px;
}

/* ============================================
   INFO CARD GRID - responsive card grid
   1 col mobile → 2 col tablet → 4 col desktop
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

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

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    overflow: hidden;
    min-width: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-card-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
}

.info-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--primary);
}

.info-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 12px;
}

.info-card-body p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   STAT BLOCK - large numbers with labels
   ============================================ */
.stat-block-container {
    position: relative;
    padding: 48px 24px;
    overflow: clip;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
}

.stat-block-floodlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stat-block-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .stat-block-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .stat-block-row {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 48px;
    }
}

.stat-item {
    text-align: center;
    min-width: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 36px);
    color: var(--primary);
    letter-spacing: -0.02em;
    display: block;
    line-height: 1.1;
}

.stat-number.stat-gold {
    color: var(--secondary);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted-foreground);
    display: block;
    margin-top: 8px;
}

.stat-source {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 8px;
    opacity: 0.7;
}

/* ============================================
   CTA BANNER - full-width conversion section
   Diagonal floodlight gradient on dark background.
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 24px;
    text-align: center;
    overflow: clip;
    background: var(--background);
}

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

.cta-floodlight {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 30%, rgba(57, 255, 20, 0.08) 50%, transparent 70%),
        linear-gradient(225deg, transparent 30%, rgba(255, 215, 0, 0.06) 50%, transparent 70%);
    animation: floodlight-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floodlight-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 16px;
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-micro-copy {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
    opacity: 0.8;
}

/* ============================================
   FAQ ACCORDION - native details/summary
   Lime-green left border on expand, chevron rotation.
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid var(--border);
    padding-left: 24px;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.faq-item[open]::before {
    opacity: 1;
}

.faq-item[open] {
    background: rgba(57, 255, 20, 0.02);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--foreground);
    list-style: none;
    transition: color 0.3s ease;
}

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

.faq-question::marker {
    display: none;
    content: '';
}

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

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

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

.faq-answer {
    padding: 0 0 24px 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    animation: faq-fade-in 0.3s ease;
}

@keyframes faq-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   TABLES - data and comparison tables
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 32px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 16px;
    min-width: 480px;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.data-table thead th {
    background: var(--card);
    color: var(--primary);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.data-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:hover {
    background: rgba(57, 255, 20, 0.03);
}

.data-table .highlight-cell {
    color: var(--primary);
    font-weight: 600;
}

/* Comparison table with recommended column */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 16px;
    min-width: 480px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.comparison-table .recommended-col {
    background: rgba(57, 255, 20, 0.05);
    border-color: var(--primary);
}

/* ============================================
   STEP LIST - numbered steps with lime-green circles
   ============================================ */
.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding-left: 64px;
    margin-bottom: 32px;
    min-height: 48px;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
}

.step-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 8px;
}

.step-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

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

/* Summary / TL;DR box */
.summary-box {
    border: 1px solid var(--border);
    background: var(--card);
    padding: 32px;
    margin: 32px 0;
    border-radius: 8px;
}

.summary-box-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 16px;
}

.summary-box p:last-child {
    margin-bottom: 0;
}

/* Callout / highlight box */
.callout-box {
    border-left: 4px solid var(--primary);
    background: rgba(57, 255, 20, 0.04);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.3;
    padding: 32px 0;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    margin: 48px 0;
    text-align: center;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    font-style: normal;
    text-transform: none;
    margin-top: 16px;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge {
    opacity: 0.6;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Highlight boxes */
.box-lime {
    border: 2px solid var(--primary);
    background: rgba(57, 255, 20, 0.03);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.box-gold {
    border: 2px solid var(--secondary);
    background: rgba(255, 215, 0, 0.03);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.box-lime p:last-child,
.box-gold p:last-child {
    margin-bottom: 0;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.badge-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.badge-outline {
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* Social proof / testimonials */
.social-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

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

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--muted-foreground);
    font-size: 14px;
}

/* ============================================
   GAME GRID & PROVIDER STRIP
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.15);
}

.game-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.game-card-title {
    padding: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
}

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.provider-logo {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(0.5);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
    flex-shrink: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.license-info {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.license-info strong {
    color: var(--primary);
}

.copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0ms);
}

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

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cta-floodlight {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

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

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

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

/* ============================================
   DETAILS / SUMMARY - base expandable
   ============================================ */
details {
    margin: 16px 0;
}

details summary {
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 0;
    color: var(--foreground);
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    float: right;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

details[open] summary::after {
    content: '\2212';
}

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