/* ============================================
   VOX CASINO - DESIGN SYSTEM
   Dark theme with orange accents (single theme, no toggle)
   Fonts: Bungee (display) + Outfit (body)
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Dark theme as default - no .dark class needed
   ============================================ */
:root {
    --background: #050505;
    --foreground: #fafaf9;
    --card: #161616;
    --card-foreground: #fafaf9;
    --popover: #161616;
    --popover-foreground: #fafaf9;
    --primary: #ff6a00;
    --primary-foreground: #050505;
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;
    --muted: #6f829d;
    --muted-foreground: #c1cad6;
    --accent: #ff4500;
    --accent-foreground: #050505;
    --destructive: #f32c4e;
    --destructive-foreground: #fafaf9;
    --border: #334155;
    --input: #1e293b;
    --ring: #ff6a00;

    /* Layout tokens */
    --header-height: 64px;
    --max-width: 1200px;
    --section-pad-y: 50px;
    --section-pad-x: 24px;
    --grid-gap: 24px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 200ms ease-out;
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
        --section-pad-y: 80px;
        --section-pad-x: 32px;
    }
}

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

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

body {
    font-family: "Outfit", sans-serif;
    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: none;
    transition: color var(--transition);
}

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

ul, ol {
    list-style: none;
}

section {
    overflow: clip;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 9999;
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    border-radius: 0 0 8px 0;
    transition: top var(--transition);
}

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

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

/* ============================================
   TYPOGRAPHY
   Bungee for headings, Outfit for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Bungee", sans-serif;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }

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

p {
    margin-bottom: 16px;
}

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

.section {
    padding: var(--section-pad-y) var(--section-pad-x);
}

.section-full {
    padding: var(--section-pad-y) 0;
}

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

.section-heading {
    font-family: "Bungee", sans-serif;
    font-size: 26px;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 36px;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

[id] {
    scroll-margin-top: 90px;
}

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

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

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

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

.site-brand:hover {
    color: var(--foreground);
}

.brand-icon {
    flex-shrink: 0;
}

.brand-text {
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    color: var(--foreground);
}

/* Primary nav - hidden on mobile, shown as drawer when open */
.primary-nav {
    display: none;
}

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

.primary-nav.is-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.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: 14px 0;
    font-size: 18px;
    color: var(--foreground);
}

.primary-nav.is-open .nav-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

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

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

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

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

    .primary-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        position: static;
        background: transparent;
        z-index: auto;
        overflow: visible;
        flex-direction: row;
        padding: 0;
    }

    .primary-nav.is-open {
        position: static;
        background: transparent;
        z-index: auto;
        overflow: visible;
        flex-direction: row;
        padding: 0;
    }

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

    .nav-link {
        color: var(--muted-foreground);
        font-size: 15px;
        font-weight: 500;
        padding: 8px 0;
        transition: color var(--transition);
    }

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

    .nav-cta {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }
}

.nav-list {
    list-style: none;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color var(--transition);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bungee", sans-serif;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    min-height: 44px;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 106, 0, 0.5);
    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);
}

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
    min-height: 52px;
}

.btn-sm {
    font-size: 14px;
    padding: 8px 20px;
    min-height: 40px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   FOOTER
   Four-column grid on desktop, stacked on mobile
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

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

.footer-brand .brand-text {
    font-size: 18px;
}

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

.footer-heading {
    font-family: "Bungee", sans-serif;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer-payments li {
    color: var(--muted-foreground);
    font-size: 14px;
}

.footer-license {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copy {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    color: var(--muted);
    font-size: 13px;
}

/* ============================================
   HERO SECTION
   Full-bleed with background image and overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: clip;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.55) 50%, rgba(255, 106, 0, 0.12) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .hero-content {
        padding: 80px 32px;
    }
}

.hero h1 {
    color: var(--foreground);
    margin-bottom: 16px;
    max-width: 700px;
}

.hero p {
    color: var(--muted-foreground);
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 28px;
}

/* ============================================
   SPEECH BUBBLES (Pop-art)
   Floating animated bubbles with comic text
   ============================================ */
.speech-bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bungee", sans-serif;
    font-size: 18px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 3px solid #0a0a0a;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
    z-index: 3;
    animation: bubble-float 3s ease-in-out infinite;
    will-change: transform;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .speech-bubble {
        font-size: 22px;
        padding: 12px 28px;
    }
}

.speech-bubble-alt {
    background: var(--accent);
    animation-delay: 1.5s;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   CARD GRID COMPONENT
   Responsive grid: 1 → 2 → 3/4 columns
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.2);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease-out;
}

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

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.card-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bungee", sans-serif;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.card-title {
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 8px;
}

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

.card-extra {
    margin-top: 12px;
    color: var(--muted-foreground);
    font-size: 14px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--accent);
}

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed section with orange radial glow
   ============================================ */
.cta-banner-section {
    position: relative;
    background: #0a0a0a;
    padding: 50px 24px;
    text-align: center;
    overflow: clip;
}

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

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner-overlay {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.cta-banner-overlay img {
    max-height: 400px;
    width: auto;
}

@media (max-width: 767px) {
    .cta-banner-overlay {
        display: none;
    }
}

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

.cta-headline {
    font-family: "Bungee", sans-serif;
    font-size: 26px;
    color: var(--foreground);
    margin-bottom: 12px;
}

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

.cta-subtext {
    color: var(--muted-foreground);
    font-size: 17px;
    margin-bottom: 28px;
}

.btn-cta {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-microcopy {
    color: var(--muted);
    font-size: 13px;
    margin-top: 16px;
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Native <details>/<summary> with styled toggle
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.faq-item[open] {
    border-left: 3px solid var(--primary);
    background: var(--secondary);
}

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

@media (min-width: 768px) {
    .faq-question {
        padding: 32px;
        font-size: 18px;
    }
}

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

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

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

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

.faq-answer {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 32px 32px;
    }
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   WINNERS TICKER
   Horizontal scrollable list of recent winners
   ============================================ */
.winners-ticker {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    background: var(--card);
}

.winners-track {
    display: flex;
    gap: 32px;
    padding: 16px 24px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.winner-amount {
    font-family: "Bungee", sans-serif;
    color: var(--primary);
    font-size: 16px;
}

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

/* TL;DR / Summary box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .tldr-box {
        padding: 32px;
    }
}

.tldr-box h3 {
    font-family: "Bungee", sans-serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.tldr-list {
    list-style: none;
    padding: 0;
}

.tldr-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
}

.tldr-list li::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
    top: 4px;
}

/* Callout / Highlight box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

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

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

.callout-title {
    font-family: "Bungee", sans-serif;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--foreground);
}

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

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

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 32px 24px;
}

.stat-number {
    font-family: "Bungee", sans-serif;
    font-size: 42px;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 56px;
    }
}

.stat-label {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    display: block;
}

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

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    background: var(--card);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .pull-quote {
        font-size: 22px;
        padding: 32px 40px;
    }
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ============================================
   CRO PATTERNS
   ============================================ */

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

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

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

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

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

.comparison-table th {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    background: var(--card);
}

.comparison-table td {
    color: var(--muted-foreground);
    font-size: 15px;
}

.comparison-table .col-highlight {
    background: var(--secondary);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

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

.comparison-table .check {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.comparison-table .cross {
    color: var(--muted);
    font-size: 18px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* General table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

th {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    background: var(--card);
}

td {
    color: var(--muted-foreground);
    font-size: 15px;
}

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

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

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

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    color: var(--foreground);
}

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

/* ============================================
   BONUS CODE CARDS
   ============================================ */
.bonus-code-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.bonus-code-card {
    background: var(--card);
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.bonus-code-label {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-bottom: 12px;
}

.bonus-code {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Courier New", monospace;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.bonus-code-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    font-family: "Outfit", sans-serif;
}

.bonus-code-copy:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.bonus-code-copy.copied {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
}

.bonus-code-detail {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-top: 12px;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    width: 100%;
    height: 24px;
    background: var(--input);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 12px;
    transition: width 600ms ease-out;
}

/* ============================================
   STEP LIST
   Numbered steps with orange circles
   ============================================ */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .step-list {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }
}

.step-item {
    flex: 1;
    position: relative;
    min-width: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.step-title {
    font-family: "Bungee", sans-serif;
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.step-desc {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   INFO CARD
   General content container with optional accent
   ============================================ */
.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

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

.info-card-accent {
    border-left: 4px solid var(--primary);
}

/* ============================================
   FEATURE BLOCK (split layout)
   ============================================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-block-content h3 {
    font-family: "Bungee", sans-serif;
    font-size: 22px;
    color: var(--foreground);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .feature-block-content h3 {
        font-size: 24px;
    }
}

.feature-block-content p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}

.feature-block-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PROVIDER STRIP
   Horizontal logo strip
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.provider-logo {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 60px;
    transition: border-color var(--transition), box-shadow var(--transition);
    filter: grayscale(0.6);
    opacity: 0.7;
}

.provider-logo:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
    filter: grayscale(0);
    opacity: 1;
}

.provider-logo img {
    max-height: 40px;
    width: auto;
}

.provider-logo-text {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
}

.provider-logo:hover .provider-logo-text {
    color: var(--foreground);
}

/* ============================================
   CONTENT CARD & PROSE
   For SEO text blocks with inline anchors
   ============================================ */
.content-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    font-weight: 500;
}

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

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

.prose h3 {
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin: 24px 0 12px;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.badge-success {
    background: #16a34a;
    color: #fff;
}

/* ============================================
   DEPOSIT TIER CARDS
   For bonus package breakdown
   ============================================ */
.tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

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

.tier-number {
    font-family: "Bungee", sans-serif;
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.tier-match {
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.tier-bonus {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 8px;
}

.tier-freespins {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.12);
}

.sitemap-item h3 a {
    color: var(--foreground);
    transition: color var(--transition);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* Staggered card animations */
.card-grid .card:nth-child(1) { transition-delay: 0ms; }
.card-grid .card:nth-child(2) { transition-delay: 60ms; }
.card-grid .card:nth-child(3) { transition-delay: 120ms; }
.card-grid .card:nth-child(4) { transition-delay: 180ms; }
.card-grid .card:nth-child(5) { transition-delay: 240ms; }
.card-grid .card:nth-child(6) { transition-delay: 300ms; }
.card-grid .card:nth-child(7) { transition-delay: 360ms; }
.card-grid .card:nth-child(8) { transition-delay: 420ms; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 479px) {
    .header-inner {
        padding: 0 16px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .section {
        padding: 40px 16px;
    }

    .speech-bubble {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@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;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
