/*
 * ============================================
   BEEF CASINO - DESIGN SYSTEM
   Pop-Art Glamour: Dark obsidian, neon red,
   mustard gold, comic-style typography.
   Dark-only theme (no toggle).
   ============================================
 */

/* ============================================
   DESIGN TOKENS
   Dark obsidian palette as primary theme
   ============================================ */
:root {
    /* Backgrounds */
    --background: #0C0A09;
    --background-alt: #1C1917;
    --card: #1C1917;
    --card-hover: #292524;

    /* Foreground */
    --foreground: #FAFAF9;
    --foreground-muted: #D6D3D1;
    --muted: #292524;
    --muted-foreground: #94A3B8;

    /* Accents */
    --primary: #FF0033;
    --primary-hover: #E6002E;
    --primary-foreground: #000000;
    --secondary: #FBBF24;
    --secondary-foreground: #1C1917;
    --accent: #22D3EE;
    --accent-foreground: #1C1917;
    --destructive: #FF0033;

    /* Borders */
    --border: #292524;
    --border-light: #44403C;

    /* Sizing */
    --max-width: 1200px;
    --header-height: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Typography */
    --font-display: "Bangers", "Impact", sans-serif;
    --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --glow-red: 0 0 20px rgba(255, 0, 51, 0.5), 0 0 40px rgba(255, 0, 51, 0.3);
    --glow-gold: 0 0 20px rgba(251, 191, 36, 0.5), 0 0 40px rgba(251, 191, 36, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Remove dark class distinction - site is dark-only */
.dark {
    /* Same as root - no-op for compatibility */
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

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

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

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

/* In-text links inside paragraphs must be distinguishable */
p a {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

p a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Bangers for display, Work Sans for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h1 {
    font-size: 32px;
    text-transform: uppercase;
}

h2 {
    font-size: 26px;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
    text-transform: uppercase;
}

p {
    margin-bottom: 24px;
    max-width: 75ch;
}

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

.section {
    padding: 64px 0;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.site-brand .logo {
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.nav-list a {
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--secondary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

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

.btn-login, .btn-register {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--foreground);
    border: 2px solid var(--border-light);
    background: transparent;
}

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

.btn-register {
    color: var(--primary-foreground);
    background: var(--primary);
    box-shadow: 0 0 12px rgba(255, 0, 51, 0.3);
}

.btn-register:hover {
    background: var(--primary-hover);
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

.mobile-overlay.is-visible {
    display: block;
}

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

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

.footer-heading {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: none;
}

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

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

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

.footer-license {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.license-badge {
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
}

.age-badge {
    font-family: var(--font-display);
    font-size: 18px;
    padding: 4px 12px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: #ff4d6a;
}

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

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

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

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

/* ============================================
   HERO BANNER - Full-bleed
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background: linear-gradient(135deg, #0C0A09 0%, #1C1917 50%, #0C0A09 100%);
    overflow: clip;
}

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

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

.hero-content h1 {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-content h1 .accent-red {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}

.hero-content h1 .accent-gold {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-content p {
    font-size: 16px;
    color: var(--foreground-muted);
    margin: 0 auto 32px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* Halftone burst decoration */
.halftone-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        var(--primary) 0deg 7deg,
        transparent 7deg 14deg
    );
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* Comic burst text */
.comic-burst {
    position: absolute;
    font-family: var(--font-display);
    text-transform: uppercase;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    transform: rotate(-15deg);
    box-shadow: var(--glow-red);
    z-index: 3;
}

/* ============================================
   CTA GATE BUTTON
   ============================================ */
.cta-gate-wrap {
    text-align: center;
    margin: 40px auto;
}

.cta-gate-btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-foreground);
    background: var(--primary);
    padding: 18px 48px;
    border-radius: var(--radius);
    min-height: 56px;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.cta-gate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.7), 0 0 60px rgba(255, 0, 51, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-gate-micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 12px;
    max-width: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 51, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 51, 0.6), 0 0 50px rgba(255, 0, 51, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
    }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.stat-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        currentColor 0deg 10deg,
        transparent 10deg 20deg
    );
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-number-red {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
    animation: pulse-text 2s ease-in-out infinite;
}

.stat-number-gold {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    animation: pulse-text 2.5s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--foreground-muted);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.stat-source {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: var(--muted-foreground);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

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

.bonus-card {
    background: var(--card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 0 24px rgba(255, 0, 51, 0.2), var(--shadow-card);
}

.bonus-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--muted);
}

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

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

.bonus-card-title {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.bonus-card-desc {
    font-size: 15px;
    color: var(--foreground-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.bonus-card-features {
    margin-bottom: 20px;
}

.bonus-card-features li {
    font-size: 14px;
    color: var(--foreground-muted);
    padding: 6px 0 6px 28px;
    position: relative;
}

.bonus-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.bonus-card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.bonus-card-link:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

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

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

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

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

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

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.section-heading h2 .accent-red {
    color: var(--primary);
}

.section-heading h2 .accent-gold {
    color: var(--secondary);
}

.section-heading p {
    font-size: 16px;
    color: var(--foreground-muted);
    margin: 0 auto;
}

/* ============================================
   TRUST SIGNALS STRIP
   ============================================ */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background-alt);
}

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

.trust-item .trust-icon {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.trust-item .trust-label {
    font-size: 13px;
    color: var(--muted-foreground);
}

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

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

.tldr-box .tldr-label {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

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

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

.callout .callout-label {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

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

/* Pull quote */
.pull-quote {
    font-family: var(--font-body);
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding: 24px 32px;
    margin: 40px 0;
    line-height: 1.4;
    max-width: none;
}

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

/* CTA section band */
.cta-section {
    text-align: center;
    padding: 64px 24px;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-section h2 .accent-red {
    color: var(--primary);
}

.cta-section p {
    font-size: 16px;
    color: var(--foreground-muted);
    margin: 0 auto 32px;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}

.comparison-table thead th {
    background: var(--card);
    color: var(--secondary);
    font-family: var(--font-display);
    text-transform: uppercase;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid var(--border-light);
}

.comparison-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground-muted);
}

.comparison-table tbody tr:hover {
    background: var(--card);
}

.comparison-table .col-highlight {
    background: rgba(255, 0, 51, 0.05);
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

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

/* Two-column feature layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

/* Full-width feature card */
.feature-wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-wide-image {
    aspect-ratio: 16 / 9;
    background: var(--muted);
    overflow: hidden;
    position: relative;
}

.feature-wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-wide-body {
    padding: 32px;
}

.feature-wide-body h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.feature-wide-body p {
    color: var(--foreground-muted);
    margin-bottom: 16px;
}

/* Provider badges */
.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

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

/* VIP tier list */
.vip-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
}

.vip-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.vip-tier-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--secondary);
}

.vip-tier-value {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
}

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

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

/* Staggered animation delay for grids */
.bonus-card-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.bonus-card-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.bonus-card-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.bonus-card-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.bonus-card-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.bonus-card-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

.stat-block .stat-item:nth-child(1) { transition-delay: 0ms; }
.stat-block .stat-item:nth-child(2) { transition-delay: 100ms; }
.stat-block .stat-item:nth-child(3) { transition-delay: 200ms; }
.stat-block .stat-item:nth-child(4) { transition-delay: 300ms; }

/* ============================================
   RESPONSIVE - TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }

    .section { padding: 96px 0; }
    .hero { min-height: 560px; padding: 64px 0; }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .hero-content { text-align: left; }
    .hero-content p { margin-left: 0; }

    .stat-block {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

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

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

    .two-col {
        grid-template-columns: 1fr 1fr;
    }

    .feature-wide {
        grid-template-columns: 1fr 1fr;
    }

    .feature-wide-image {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .cta-gate-btn { font-size: 26px; }

    .section-heading h2 { font-size: 32px; }

    .pull-quote { font-size: 26px; }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px)
   ============================================ */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }

    .section { padding: 120px 0; }
    .hero { min-height: 600px; }

    /* Show desktop nav, hide hamburger */
    .primary-nav {
        display: flex;
    }

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

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

    .stat-number {
        font-size: 56px;
    }

    .bonus-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .section-heading h2 { font-size: 36px; }

    .hero-content h1 { font-size: 48px; }

    .cta-gate-btn { font-size: 28px; }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1280px)
   ============================================ */
@media (min-width: 1280px) {
    .hero { min-height: 640px; }
}

/* ============================================
   MOBILE MENU DRAWER (below 1024px)
   ============================================ */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        gap: 0;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

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

    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 16px 0;
        font-size: 18px;
    }

    .nav-list a::after {
        display: none;
    }

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

    .btn-login, .btn-register {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 16px;
    }
}

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

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-header h1 {
    font-size: 36px;
    margin-bottom: 0;
}

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

.sitemap-entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.sitemap-entry:first-child {
    border-top: 1px solid var(--border-light);
}

.sitemap-entry-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.sitemap-entry-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-entry-title a:hover {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(255, 0, 51, 0.4);
}

.sitemap-entry-desc {
    color: var(--foreground-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header, .site-footer, .mobile-menu-toggle, .cta-gate-btn, .nav-cta {
        display: none;
    }
}