/* ============================================
   DESIGN TOKENS - Dark-only theme
   Golisimo Casino: electric lime + glowing yellow
   on pure black, football street-derby aesthetic
   ============================================ */

:root {
    --background: #020617;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --popover: #0f172a;
    --popover-foreground: #f8fafc;
    --primary: #a3e635;
    --primary-foreground: #0c0a09;
    --primary-dim: #65a30d;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #facc15;
    --accent-foreground: #0c0a09;
    --destructive: #e41414;
    --destructive-foreground: #f8fafc;
    --border: #334155;
    --input: #1e293b;
    --ring: #a3e635;

    --font-heading: "Anton", "Impact", sans-serif;
    --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

    --header-height: 72px;
    --max-width: 1280px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 200ms ease-out;

    --neon-green: 0 0 24px rgba(163, 230, 53, 0.35);
    --neon-yellow: 0 0 24px rgba(250, 204, 21, 0.3);
}

/* ============================================
   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);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

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

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

ul, ol {
    list-style: none;
}

section {
    overflow-x: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Anton for headlines, Barlow for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    text-transform: uppercase;
}

h4 {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

p {
    margin-bottom: 1rem;
    max-width: 70ch;
}

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

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    max-width: 65ch;
}

.accent-text {
    color: var(--primary);
}

.accent-yellow {
    color: var(--accent);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: inline-block;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
}

.section-narrow {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-header {
    margin-bottom: 2.5rem;
    max-width: 70ch;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

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

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

.text-center .section-header {
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    border-radius: 8px;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--foreground);
    line-height: 1;
}

.brand-accent {
    color: var(--primary);
    margin-left: 0.25em;
}

/* Mobile menu toggle */
.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-sm);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: border-color var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary);
}

.menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Main navigation - mobile drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 1.5rem;
}

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

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.75rem 0;
    letter-spacing: 0.02em;
    transition: color var(--transition), padding-left var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.nav-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Desktop navigation */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        overflow: visible;
        gap: 0.5rem;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.25rem;
        margin-bottom: 0;
    }

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

    .nav-link {
        min-height: 44px;
        font-size: 0.9375rem;
        padding: 0.5rem 0.875rem;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        padding-left: 0.875rem;
        background: var(--secondary);
    }

    .nav-actions {
        flex-direction: row;
        gap: 0.625rem;
        margin-top: 0;
        margin-left: 0.75rem;
        padding-left: 0.75rem;
        border-left: 1px solid var(--border);
    }

    .nav-actions .btn {
        width: auto;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 0.875rem 1.75rem;
    min-height: 48px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform var(--transition), box-shadow var(--transition),
                background var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(163, 230, 53, 0.25);
}

.btn-primary:hover {
    background: #bef264;
    border-color: #bef264;
    box-shadow: 0 6px 28px rgba(163, 230, 53, 0.4);
    color: var(--primary-foreground);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(163, 230, 53, 0.08);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    min-height: 44px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    min-height: 56px;
    font-size: 1.125rem;
}

.btn-bounce {
    animation: bounce-cta 2s ease-in-out infinite;
}

@keyframes bounce-cta {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-bounce:hover {
    animation-play-state: paused;
}

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

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        rgba(2, 6, 23, 0.97) 0%,
        rgba(2, 6, 23, 0.82) 40%,
        rgba(2, 6, 23, 0.45) 100%);
}

.hero-overlay-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-overlay-lines .motion-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.4;
}

.hero-overlay-lines .ml-1 { top: 15%; left: -10%; width: 60%; transform: rotate(-12deg); }
.hero-overlay-lines .ml-2 { top: 55%; left: 20%; width: 50%; transform: rotate(-12deg); }
.hero-overlay-lines .ml-3 { top: 75%; left: -5%; width: 55%; transform: rotate(-12deg); }

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

.hero-title {
    font-size: clamp(2rem, 7vw, 3.25rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 55ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .hero {
        min-height: 620px;
    }
}

/* ============================================
   CARDS - Content containers
   ============================================ */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
}

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

.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 32px rgba(163, 230, 53, 0.15);
}

.card-featured:hover {
    box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(163, 230, 53, 0.3);
}

.card-image {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid rgba(163, 230, 53, 0.3);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 0.875rem;
}

/* ============================================
   GRIDS
   ============================================ */

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

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

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

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

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.two-col-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* ============================================
   BONUS TIER CARDS
   ============================================ */

.tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card:hover {
    transform: scale(1.03);
    box-shadow: var(--neon-green);
}

.tier-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
}

.tier-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tier-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.tier-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.tier-detail {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ============================================
   GAME CARDS
   ============================================ */

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
}

.game-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--neon-green);
}

.game-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary);
    border-radius: var(--radius) var(--radius) 0 0;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-body {
    padding: 1.25rem;
}

.game-card-title {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.game-card-meta {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   VIP TIERS
   ============================================ */

.vip-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

@media (min-width: 1024px) {
    .vip-tiers {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
}

.vip-tier:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--neon-green);
}

.vip-tier-badge {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
}

.vip-tier-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.vip-tier-perks {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    min-width: 120px;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
}

.trust-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-badge-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   STATS HIGHLIGHT
   ============================================ */

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-highlight {
    flex: 1;
    min-width: 140px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
}

.stat-source {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
    opacity: 0.7;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */

.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.625rem;
}

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

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

.callout-primary .callout-title {
    color: var(--primary);
}

/* ============================================
   TL;DR / SUMMARY BOX
   ============================================ */

.tldr-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 0 16px rgba(163, 230, 53, 0.1);
}

.tldr-box h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.tldr-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.tldr-box li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted-foreground);
}

.tldr-box li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    border: none;
    border-left: 4px solid var(--primary);
    padding: 1rem 0 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--foreground);
    max-width: 65ch;
}

.pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--muted-foreground);
}

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

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.comparison-table th,
.comparison-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.comparison-table th {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: var(--secondary);
}

.comparison-table tr:hover td {
    background: rgba(163, 230, 53, 0.04);
}

.comparison-table .col-highlight {
    background: rgba(163, 230, 53, 0.08);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

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

/* ============================================
   CRYPTO ICON GRID
   ============================================ */

.crypto-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.crypto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    min-width: 100px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.crypto-item:hover {
    transform: scale(1.05);
    box-shadow: var(--neon-green);
}

.crypto-icon {
    width: 48px;
    height: 48px;
}

.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.crypto-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   PROVIDER STRIP
   ============================================ */

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.provider-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.provider-logo:hover {
    opacity: 1;
}

.provider-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.inline-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1.5rem 0;
}

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

.inline-image-caption {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================
   BADGE / TAG
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3125rem 0.75rem;
    border-radius: 4px;
    background: rgba(163, 230, 53, 0.12);
    color: var(--primary);
    border: 1px solid rgba(163, 230, 53, 0.25);
}

.badge-yellow {
    background: rgba(250, 204, 21, 0.12);
    color: var(--accent);
    border-color: rgba(250, 204, 21, 0.25);
}

/* ============================================
   FAQ ACCORDION
   Native <details>/<summary> with custom styling
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
    box-shadow: 0 0 16px rgba(163, 230, 53, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--foreground);
    transition: color var(--transition);
}

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

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

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

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

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

.faq-item[open] .faq-icon-v {
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
    max-width: 70ch;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

.cta-section {
    position: relative;
    padding: 3rem 1rem;
    text-align: center;
    overflow: hidden;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-motion-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-motion-lines .motion-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.cta-motion-lines .ml-1 { top: 20%; left: -10%; width: 50%; transform: rotate(-15deg); }
.cta-motion-lines .ml-2 { top: 50%; right: -10%; width: 45%; transform: rotate(-15deg); }
.cta-motion-lines .ml-3 { top: 70%; left: 5%; width: 40%; transform: rotate(-15deg); }
.cta-motion-lines .ml-4 { top: 35%; left: 30%; width: 35%; transform: rotate(-15deg); }

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(163, 230, 53, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-heading {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 20ch;
}

.cta-subtext {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    max-width: 50ch;
    margin-bottom: 0.5rem;
}

.cta-microcopy {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 1rem;
    }
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 12px rgba(163, 230, 53, 0.05);
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: var(--neon-green);
}

.testimonial-mark {
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
    pointer-events: none;
}

.testimonial-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 1.25rem;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.testimonial-content {
    flex: 1;
    min-width: 0;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.125rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (max-width: 600px) {
    .testimonial-body {
        flex-direction: column;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}

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

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding-top: 3rem;
    margin-top: 3rem;
}

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

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

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

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.footer-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0.625rem;
}

.footer-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.625rem;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pay-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.3125rem 0.625rem;
}

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

.footer-copy {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    max-width: 80ch;
    margin: 0 auto;
    opacity: 0.8;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.motion-lines-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.motion-lines-bg .motion-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
}

.neon-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border: none;
    margin: 2.5rem 0;
    opacity: 0.4;
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered children */
.stagger > .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger > .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.stagger > .animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }
.stagger > .animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }
.stagger > .animate-on-scroll:nth-child(5) { transition-delay: 0.45s; }
.stagger > .animate-on-scroll:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .btn-bounce {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   RESPONSIVE SECTION SPACING
   ============================================ */

@media (min-width: 768px) {
    .section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

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

/* ============================================
   CONTENT PROSE
   ============================================ */

.prose p {
    margin-bottom: 1.25rem;
    color: var(--muted-foreground);
}

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

.prose a {
    color: var(--primary);
    font-weight: 600;
}

.prose h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose ul {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.prose ul li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted-foreground);
}

.prose ul li::before {
    content: '\26BD';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
}

.prose ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.prose ol li {
    margin-bottom: 0.625rem;
    color: var(--muted-foreground);
}

.prose ol li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   SITEMAP LIST
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sitemap-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-item:first-child {
    padding-top: 0;
}

.sitemap-item:last-child {
    border-bottom: none;
}

.sitemap-item h2 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
}

.sitemap-item h2 a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.sitemap-item h2 a:hover {
    color: var(--accent);
}

.sitemap-item p {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 70ch;
}

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

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    .hero-actions .btn {
        white-space: normal;
        font-size: 0.9375rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        letter-spacing: 0.01em;
    }
}
