/* ============================================
   JOKERY CASINO - Design System
   Dark cinematic retro-circus theme
   Fonts: Bebas Neue (display) + Inter (body)
   ============================================ */

:root {
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1c1917;
    --card-foreground: #fafaf9;
    --popover: #1c1917;
    --popover-foreground: #fafaf9;
    --primary: #f72e54;
    --primary-foreground: #000000;
    --secondary: #292524;
    --secondary-foreground: #fafaf9;
    --muted: #44403c;
    --muted-foreground: #b2aca9;
    --accent: #fde047;
    --accent-foreground: #0c0a09;
    --neon-green: #4ade80;
    --neon-red: #f72e54;
    --neon-yellow: #fde047;
    --destructive: #f72e54;
    --destructive-foreground: #000000;
    --border: #44403c;
    --input: #292524;
    --ring: #f72e54;

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

    --max-width: 1280px;
    --space-section: 64px;
    --space-card: 24px;

    --transition: 300ms ease-out;
    --radius: 8px;
    --radius-lg: 16px;
}

.dark {
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1c1917;
    --card-foreground: #fafaf9;
    --popover: #1c1917;
    --popover-foreground: #fafaf9;
    --primary: #f72e54;
    --primary-foreground: #000000;
    --secondary: #292524;
    --secondary-foreground: #fafaf9;
    --muted: #44403c;
    --muted-foreground: #b2aca9;
    --accent: #fde047;
    --accent-foreground: #0c0a09;
    --border: #44403c;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    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;
}

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

section {
    overflow: clip;
}

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

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0 0 0.5em 0;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin: 0 0 1em 0;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    max-width: 700px;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .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) {
    :root {
        --space-section: 96px;
    }
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .container {
        padding: 0 32px;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover {
    background: #e11d48;
    color: #fff;
    border-color: #e11d48;
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.6), 0 0 60px rgba(244, 63, 94, 0.3);
    transform: translateY(-2px);
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, 0.95);
    border-bottom: 1px solid var(--border);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

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

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

.site-brand .logo {
    border-radius: 6px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-list a:hover {
    color: var(--accent);
    background: var(--secondary);
}

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

.nav-cta .btn {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 0.9375rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition);
}

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

@media (max-width: 1023px) {
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--background);
        padding: 24px 16px;
        overflow-y: auto;
        z-index: 999;
        display: none;
    }

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

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

    .nav-list a {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .nav-cta .btn {
        min-height: 48px;
        width: 100%;
    }
}

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

.site-footer {
    background: #050403;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    overflow: clip;
}

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

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

.footer-col h2 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
}

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

.footer-col ul li a {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.footer-col ul li a:hover {
    color: var(--foreground);
}

.footer-logo {
    border-radius: 6px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    max-width: 320px;
}

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

.payment-list li {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding-top: 24px;
}

.footer-meta {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.footer-meta p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.age-warning {
    color: var(--accent) !important;
    font-weight: 600;
}

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

.hero {
    position: relative;
    padding: 48px 0 64px;
    background: linear-gradient(135deg, #0c0a09 0%, #1c1917 50%, #0c0a09 100%);
    overflow: clip;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(244, 63, 94, 0.03) 20px,
        rgba(244, 63, 94, 0.03) 40px
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 64px 0 80px;
    }
    .hero-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }
}

.hero-content h1 {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-content h1 .accent-red {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(244, 63, 94, 0.5);
}

.hero-content h1 .accent-yellow {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(253, 224, 71, 0.4);
}

.hero-bonus-amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--accent);
    text-shadow: 0 0 40px rgba(253, 224, 71, 0.6), 0 0 80px rgba(253, 224, 71, 0.3);
    margin: 16px 0;
    line-height: 1;
}

.hero-content .lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: 0 0 60px rgba(244, 63, 94, 0.2);
}

/* ============================================
   GAME CARD GRID
   ============================================ */

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-card);
    transition: all var(--transition);
    min-width: 0;
}

.game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(244, 63, 94, 0.2);
}

.game-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card:hover .game-thumb img {
    transform: scale(1.05);
}

.game-provider {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-hot {
    background: var(--primary);
    color: #fff;
}

.badge-new {
    background: var(--neon-green);
    color: #0c0a09;
}

.game-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 63, 94, 0.85);
    color: #fff;
    font-weight: 600;
    font-size: 1.0625rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card:hover .game-play {
    opacity: 1;
}

.game-title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--foreground);
}

/* ============================================
   PROMO CARD
   ============================================ */

.promo-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px;
    min-width: 0;
    transition: all var(--transition);
}

.promo-card.accent-yellow {
    border-top-color: var(--accent);
}

.promo-card.accent-green {
    border-top-color: var(--neon-green);
}

.promo-card:hover {
    box-shadow: 0 0 32px rgba(244, 63, 94, 0.15);
    transform: translateY(-4px);
}

.promo-mascot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.9;
}

.promo-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.promo-amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--primary);
    text-shadow: 0 0 30px rgba(244, 63, 94, 0.4);
    line-height: 1;
    margin-bottom: 16px;
}

.promo-card.accent-yellow .promo-amount {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(253, 224, 71, 0.4);
}

.promo-card.accent-green .promo-amount {
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
}

.promo-desc {
    color: var(--card-foreground);
    margin-bottom: 20px;
}

.promo-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.promo-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

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

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--foreground);
    transition: color var(--transition);
}

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

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

.faq-toggle {
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    transition: all var(--transition);
}

.faq-toggle::before {
    width: 16px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 16px;
}

.faq-item[open] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

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

.faq-answer p {
    color: var(--card-foreground);
    margin: 0;
}

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

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0c0a09, #1c1917);
    padding: 64px 16px;
    text-align: center;
    overflow: clip;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(244, 63, 94, 0.04) 30px,
        rgba(244, 63, 94, 0.04) 60px
    );
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 96px 32px;
    }
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--foreground);
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.cta-subtext {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 220px;
}

.trust-icon {
    font-size: 2rem;
}

.trust-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
    text-align: center;
}

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

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--accent);
    text-shadow: 0 0 40px rgba(253, 224, 71, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: 8px;
}

.stat-source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 4px;
    opacity: 0.7;
}

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

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

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

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

.callout-title {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

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

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

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

.pull-quote {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 32px 0;
    font-style: italic;
    background: var(--card);
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

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

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: var(--radius);
}

.table-wrapper[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

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

th {
    background: var(--secondary);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

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

/* ============================================
   PROSE / ARTICLE
   ============================================ */

.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    margin-top: 48px;
}

.prose h3 {
    margin-top: 32px;
    color: var(--accent);
}

.prose p {
    margin-bottom: 1.2em;
}

.prose ul, .prose ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 8px;
}

.prose strong {
    color: var(--accent);
    font-weight: 600;
}

.prose a {
    color: #f5153a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   STEP LIST
   ============================================ */

.step-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    list-style: none;
}

.step-list li {
    counter-increment: step;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-list li::before {
    content: counter(step);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(244, 63, 94, 0.3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
}

.testimonial-quote {
    color: var(--card-foreground);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(244, 63, 94, 0.6), 0 0 80px rgba(244, 63, 94, 0.2);
    }
}

.btn-primary {
    animation: neon-pulse 2s ease-in-out infinite;
}

/* ============================================
   SITEMAP (minimal page)
   ============================================ */

.sitemap-page {
    padding: 48px 0;
}

.sitemap-page h1 {
    margin-bottom: 32px;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
}

.sitemap-list li {
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    list-style: none;
}

.sitemap-list li a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.sitemap-list li p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   FEATURED SLOT (Clown Coins)
   ============================================ */

.featured-slot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .featured-slot {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.featured-slot-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: 0 0 40px rgba(244, 63, 94, 0.2);
}

.featured-slot-content h2 {
    margin-top: 0;
}

.featured-slot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 16px 0 24px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    list-style: none;
}

.featured-slot-features li {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.featured-slot-features li strong {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   PROVIDER GRID
   ============================================ */

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.provider-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--muted-foreground);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition);
}

.provider-badge:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(253, 224, 71, 0.15);
}

/* ============================================
   PAYMENT METHODS GRID
   ============================================ */

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    min-width: 0;
}

.payment-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(253, 224, 71, 0.15);
    transform: translateY(-4px);
}

.payment-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.payment-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--foreground);
    margin: 0 0 4px 0;
    letter-spacing: 0.02em;
}

.payment-card-type {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.payment-card-speed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--neon-green);
    font-weight: 600;
}

/* ============================================
   SECURITY BLOCK (two-column)
   ============================================ */

.security-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .security-block {
        grid-template-columns: 1.3fr 1fr;
        gap: 48px;
        align-items: start;
    }
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.security-badge:hover {
    border-left-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.security-badge-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--secondary);
    font-size: 1.5rem;
}

.security-badge-content h3 {
    font-size: 1.125rem;
    margin: 0 0 4px 0;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 600;
}

.security-badge-content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 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;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}