/*
 * CSS STYLES - Vavada Casino Design System
 * Dark purple-blue theme, neon graffiti accents, Bebas Neue + Inter.
 */

:root {
    /* Dark theme only - no light mode toggle per brief */
    --background: #1a1033;
    --foreground: #f8fafc;
    --card: #251a47;
    --card-foreground: #f8fafc;
    --popover: #251a47;
    --popover-foreground: #f8fafc;
    --primary: #3b82f6;
    --primary-foreground: #000000;
    --secondary: #facc15;
    --secondary-foreground: #1a1033;
    --muted: #2d2050;
    --muted-foreground: #a1a8c4;
    --accent: #a855f7;
    --accent-foreground: #000000;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #3d2d6b;
    --input: #251a47;
    --ring: #3b82f6;

    --neon-glow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
    --neon-glow-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --neon-glow-gold: 0 0 20px rgba(250, 204, 21, 0.4), 0 0 40px rgba(250, 204, 21, 0.2);

    --font-heading: "Bebas Neue", sans-serif;
    --font-body: "Inter", sans-serif;

    --max-width: 1200px;
    --section-spacing: 50px;
    --component-padding: 16px;
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 200ms ease, text-shadow 200ms ease;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Bebas Neue: headings, wide letter-spacing
   Inter: body, 16px, 1.6 line-height
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.5em 0;
    color: var(--foreground);
}

h1 {
    font-size: 28px;
    letter-spacing: 0.08em;
}

h2 {
    font-size: 24px;
    letter-spacing: 0.07em;
}

h3 {
    font-size: 20px;
    letter-spacing: 0.06em;
}

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

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

p {
    margin: 0 0 1rem 0;
    font-size: 16px;
    line-height: 1.6;
}

.section-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--foreground);
}

.text-muted {
    color: var(--muted-foreground);
}

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

.text-neon {
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

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

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

.content-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .container, .content-wrap {
        padding: 0 24px;
    }
}

section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

@media (min-width: 768px) {
    .header-inner {
        padding: 12px 24px;
    }
}

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

.logo {
    border-radius: 8px;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.3));
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 0.1em;
    color: var(--secondary);
    text-shadow: var(--neon-glow-gold);
}

/* Desktop navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
    }
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--foreground);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 4px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 200ms ease, color 200ms ease;
}

.nav-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--foreground);
    margin: 0 auto;
    transition: transform 250ms ease, opacity 200ms ease;
    border-radius: 2px;
}

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

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

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

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

/* Mobile nav drawer */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 16px;
    gap: 0;
    overflow-y: auto;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
}

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

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 4px;
    font-size: 18px;
}

.primary-nav.is-open .nav-actions {
    flex-direction: column;
    gap: 12px;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
    min-height: 44px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--accent-foreground);
    transform: scale(1.05);
    box-shadow: var(--neon-glow-purple);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--neon-glow);
}

.btn-hero-cta {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(168, 85, 247, 0.4);
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-cta-banner {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
    box-shadow: var(--neon-glow-gold);
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.8), 0 0 60px rgba(250, 204, 21, 0.4);
}

/* ============================================
   HEIST HERO COMPONENT
   ============================================ */

.heist-hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #1a1033 0%, #251a47 40%, #1a1033 100%);
    overflow: clip;
}

@media (min-width: 768px) {
    .heist-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-spray-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 5%),
                      radial-gradient(circle at 90% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 8%),
                      radial-gradient(circle at 50% 90%, rgba(250, 204, 21, 0.05) 0%, transparent 6%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 0 24px;
    }
}

.hero-artwork {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    max-width: 640px;
}

.hero-art-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.2);
    border: 2px solid var(--border);
}

.hero-text-block {
    flex: 1;
    min-width: 0;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 0.06em;
    color: var(--foreground);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    margin-bottom: 16px;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 48px;
    }
}

.hero-subtext {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-mask-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0.7;
}

.hero-mask-badge .mask-emoji {
    font-size: 36px;
    filter: drop-shadow(0 0 10px var(--accent));
}

/* Flying coins animation */
.flying-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: coin-fly 4s ease-out infinite;
}

.coin-1 { left: 10%; top: 60%; animation-delay: 0s; }
.coin-2 { left: 30%; top: 50%; animation-delay: 0.6s; }
.coin-3 { left: 50%; top: 70%; animation-delay: 1.2s; }
.coin-4 { left: 70%; top: 55%; animation-delay: 1.8s; }
.coin-5 { left: 85%; top: 65%; animation-delay: 2.4s; }
.coin-6 { left: 20%; top: 75%; animation-delay: 3s; }

@keyframes coin-fly {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.2) rotate(180deg);
    }
}

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

.faq-section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    background-color: var(--background);
}

@media (min-width: 768px) {
    .faq-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.faq-heading {
    font-size: 28px;
    letter-spacing: 0.08em;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 32px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item[open] {
    border-left-color: var(--secondary);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--foreground);
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 14px;
    transition: transform 200ms ease;
}

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

.faq-answer {
    padding: 0 16px 16px 16px;
}

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

@media (min-width: 768px) {
    .faq-item summary {
        padding: 24px;
        font-size: 17px;
    }
    .faq-answer {
        padding: 0 24px 24px 24px;
    }
}

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

.cta-banner-section {
    background: linear-gradient(135deg, #1a1033 0%, #2d1b6e 50%, #1a1033 100%);
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: clip;
}

@media (min-width: 768px) {
    .cta-banner-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    position: relative;
}

.cta-banner-heading {
    font-size: 32px;
    letter-spacing: 0.08em;
    color: var(--foreground);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-banner-heading {
        font-size: 40px;
    }
}

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

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

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--component-padding);
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
    min-width: 0;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.card-featured {
    border-color: var(--secondary);
    box-shadow: var(--neon-glow-gold);
}

.card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.2);
}

.card-title {
    font-size: 22px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.card-body {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .card {
        padding: 24px;
    }
}

/* ============================================
   GRID SYSTEMS
   ============================================ */

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 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)); }
    .grid-4 { 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)); }
}

/* ============================================
   SLOT / GAME CAROUSEL
   ============================================ */

.slot-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.slot-card {
    flex-shrink: 0;
    width: 200px;
    scroll-snap-align: start;
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.slot-card:hover {
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
    transform: translateY(-4px);
}

.slot-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.slot-name {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 4px;
}

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

/* ============================================
   BONUS HIGHLIGHT BLOCK
   ============================================ */

.bonus-highlight {
    background: linear-gradient(135deg, var(--card) 0%, var(--muted) 100%);
    border: 2px solid var(--secondary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--neon-glow-gold);
    text-align: center;
}

@media (min-width: 768px) {
    .bonus-highlight {
        padding: 40px;
    }
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--secondary);
    text-shadow: var(--neon-glow-gold);
    letter-spacing: 0.05em;
    line-height: 1;
}

@media (min-width: 768px) {
    .bonus-amount {
        font-size: 72px;
    }
}

.bonus-label {
    font-size: 16px;
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 24px;
}

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

.stat-highlight {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary);
    text-shadow: var(--neon-glow);
    letter-spacing: 0.05em;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

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

.callout-box {
    background-color: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
}

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

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

.callout-box .callout-label {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #c79bff;
    margin-bottom: 8px;
}

.callout-box--warning .callout-label {
    color: #ff8a9b;
}

.callout-box--tip .callout-label {
    color: var(--secondary);
}

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

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

.summary-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.summary-box h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.summary-box ul {
    margin: 0;
    padding-left: 20px;
    color: var(--foreground);
}

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

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

.pull-quote {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: var(--secondary);
    text-shadow: var(--neon-glow-gold);
    border-left: 4px solid var(--secondary);
    padding-left: 24px;
    margin: 24px 0;
}

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

/* ============================================
   TABLES
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card);
    min-width: 0;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    overflow-wrap: break-word;
}

th {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    background-color: var(--muted);
}

tbody tr:hover {
    background-color: var(--muted);
}

/* Recommended row highlight */
.table-row-highlight {
    background-color: rgba(250, 204, 21, 0.08);
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 200ms ease, color 200ms ease;
}

.trust-badge:hover {
    border-color: var(--accent);
    color: var(--foreground);
}

/* ============================================
   CRYPTO PAYMENT BADGES
   ============================================ */

.crypto-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.crypto-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.crypto-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.crypto-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 8px var(--primary));
}

.crypto-name {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

/* ============================================
   VIP TIER BAR
   ============================================ */

.vip-tiers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vip-tier {
    flex: 1;
    min-width: 120px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: border-color 200ms ease, transform 200ms ease;
}

.vip-tier:hover {
    transform: translateY(-4px);
}

.vip-tier--bronze { border-top: 4px solid #cd7f32; }
.vip-tier--silver { border-top: 4px solid #c0c0c0; }
.vip-tier--gold { border-top: 4px solid var(--secondary); }
.vip-tier--platinum { border-top: 4px solid var(--primary); box-shadow: var(--neon-glow); }

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 8px;
}

/* ============================================
   PROVIDER LOGO WALL
   ============================================ */

.provider-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.provider-logo {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    cursor: default;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

/* ============================================
   FILTER PILLS
   ============================================ */

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-pill {
    padding: 8px 20px;
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 30px;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.filter-pill:hover, .filter-pill.active {
    border-color: var(--accent);
    color: var(--foreground);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

/* ============================================
   SECTION INTRO TEXT
   ============================================ */

.section-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 700px;
    margin-bottom: 32px;
}

.section-intro a,
.inline-link {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.section-intro a:hover,
.inline-link:hover {
    color: var(--foreground);
    text-decoration-color: var(--foreground);
}

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

.content-block {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .content-block {
        padding: 0 24px;
    }
}

.prose {
    max-width: 700px;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.prose a,
.callout-box a {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.prose a:hover,
.callout-box a:hover {
    color: var(--foreground);
    text-decoration-color: var(--foreground);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 16px 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb-sep {
    color: var(--border);
}

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

.site-footer {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
    padding: 40px 16px 20px 16px;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 60px 24px 24px 24px;
    }
}

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

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-section {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: none;
    transition: color 200ms ease;
}

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

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

.pay-badge {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.compliance-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.compliance-badge {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
}

.age-badge {
    background-color: var(--destructive);
    color: var(--destructive-foreground);
    border-color: var(--destructive);
}

.license-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

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

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sitemap-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 200ms ease;
}

.sitemap-item:hover {
    border-color: var(--border);
}

.sitemap-item h3 {
    margin-bottom: 8px;
}

.sitemap-item h3 a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 24px;
}

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

.sitemap-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */

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

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center { text-align: center; }
.full-width { width: 100%; }
.no-margin { margin: 0; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }