/* ============================================
   MARTIN CASINO - POP-ART DESIGN SYSTEM
   Tokens, typography, layout, components
   ============================================ */

:root {
    /* Single dark theme as per brief (no theme switcher) */
    --background: #0b1120;
    --background-alt: #0f172a;
    --foreground: #f8fafc;
    --card: #111b32;
    --card-foreground: #f8fafc;
    --primary: #1d4ed8;          /* electric macaw blue (AA on white text) */
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #cbd5e1; /* contrast-safe on dark */
    --accent: #fb923c;           /* tangerine */
    --accent-foreground: #1c1917;
    --destructive: #be123c;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #3b82f6;

    /* spacing scale (8px base) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --container: 1200px;
    --header-h: 68px;

    --shadow-card: 0 10px 0 -2px rgba(0,0,0,0.35), 0 4px 18px rgba(0,0,0,0.4);
    --shadow-lift: 0 14px 0 -2px rgba(0,0,0,0.35), 0 18px 38px rgba(0,0,0,0.5);
}

/* keep .dark identical so any preference works */
.dark { color-scheme: dark; }

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(59,130,246,0.10), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(251,146,60,0.08), transparent 50%);
}

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

a { color: #93c5fd; text-decoration: underline; text-decoration-color: rgba(147,197,253,0.4); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

.skip-link {
    position: absolute; left: -9999px; top: 8px;
    background: var(--accent); color: var(--accent-foreground);
    padding: 8px 14px; border-radius: 8px; z-index: 2000; font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* ============================================
   TYPOGRAPHY
   Bangers for comic headlines, Rubik for body
   ============================================ */
.font-display, h1, h2, h3, .cta-headline, .comic-card-title,
.faq-q-text, .brand-text, .section-heading {
    font-family: "Bangers", "Rubik", system-ui, sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
    margin: 0 0 var(--space-3);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.45);
}
h2, .section-heading {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.25rem);
    margin: 0 0 var(--space-3);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); margin: 0 0 var(--space-2); }
p { margin: 0 0 var(--space-3); }

.lead { font-size: 1.125rem; color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.section {
    padding: var(--space-5) 0;
}
@media (min-width: 768px) {
    .section { padding: var(--space-7) 0; }
}

.section-eyebrow,
.comic-tag {
    display: inline-block;
    font-family: "Bangers", sans-serif;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    margin-bottom: var(--space-2);
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 3px solid #000;
    font-family: "Bangers", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out;
    box-shadow: 4px 4px 0 #000;
    text-transform: uppercase;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }

.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-cta {
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 1.25rem;
    padding: 14px 30px;
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}
.btn-ghost:hover { background: var(--secondary); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11,17,32,0.96);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 0 var(--accent);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px var(--space-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: "Bangers", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}
.brand-mark {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: #fff;
    border: 3px solid #000;
    border-radius: 12px;
    transform: rotate(-6deg);
    box-shadow: 3px 3px 0 var(--accent);
    font-family: "Bangers", sans-serif;
}
.brand-text-accent { color: var(--accent); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: var(--space-3);
}
.nav-link {
    color: var(--foreground);
    font-weight: 600;
    padding: 8px 4px;
    position: relative;
}
.nav-link:hover { color: var(--accent); }
.nav-link::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    height: 3px; width: 0;
    background: var(--accent);
    transition: width 200ms ease-out;
}
.nav-link:hover::after { width: 100%; }
.nav-cta-group { display: flex; gap: 10px; }

.mobile-menu-toggle {
    display: none;
    width: 48px; height: 48px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    height: 3px; width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 200ms ease-out, opacity 200ms ease-out;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) 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(-9px) rotate(-45deg); }

@media (max-width: 767px) {
    .mobile-menu-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-3);
        gap: var(--space-3);
        z-index: 999;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 250ms ease-out;
        display: flex;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 1.1rem;
        border-left: 4px solid var(--primary);
        background: var(--card);
    }
    .nav-cta-group {
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
    }
    .nav-cta-group .btn { width: 100%; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-5) 0 var(--space-6);
    overflow: clip;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-4);
    align-items: center;
}
@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-tagline { font-size: 1.15rem; color: var(--muted-foreground); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);
    margin-top: var(--space-3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--space-3); }
.hero-image {
    position: relative;
    border: 4px solid #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    box-shadow: 8px 8px 0 var(--accent);
}
.hero-image img { width: 100%; height: auto; display: block; }

/* ============================================
   COMIC CARD
   ============================================ */
.comic-card {
    position: relative;
    background: var(--card);
    color: var(--card-foreground);
    border: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-3);
    box-shadow: var(--shadow-card);
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
@media (min-width: 768px) {
    .comic-card { padding: var(--space-4); }
}
.comic-card:hover {
    transform: translateY(-4px) rotate(-0.5deg) scale(1.02);
    box-shadow: var(--shadow-lift);
}
.comic-card-badge {
    position: absolute;
    top: -14px; right: -10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "Bangers", sans-serif;
    padding: 6px 12px;
    border: 3px solid #000;
    border-radius: 999px;
    transform: rotate(8deg);
    box-shadow: 2px 2px 0 #000;
    font-size: 0.95rem;
}
.comic-card-media {
    border: 3px solid #000;
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary);
    aspect-ratio: 16 / 10;
}
.comic-card-media img { width: 100%; height: 100%; object-fit: cover; }
.comic-card-title { color: var(--foreground); text-shadow: 2px 2px 0 rgba(0,0,0,0.5); }
.comic-card-text { color: var(--muted-foreground); margin: 0; }
.comic-card-link {
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
    font-family: "Rubik", sans-serif;
}
.comic-card-link:hover { text-decoration: underline; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 60%, #ea580c 100%);
    color: var(--accent-foreground);
    padding: var(--space-5) 0;
    margin: var(--space-5) 0;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    overflow: clip;
}
@media (min-width: 768px) {
    .cta-banner { padding: var(--space-7) 0; }
}
.cta-halftone {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
    opacity: 0.5;
}
.cta-inner {
    position: relative;
    display: grid;
    gap: var(--space-4);
    align-items: center;
}
@media (min-width: 768px) {
    .cta-inner { grid-template-columns: 1.4fr 0.6fr; }
}
.cta-content { text-align: left; position: relative; }
.cta-burst {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: "Bangers", sans-serif;
    padding: 6px 18px;
    border: 3px solid #000;
    border-radius: 999px;
    transform: rotate(-6deg);
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
    box-shadow: 3px 3px 0 #000;
}
.cta-headline {
    font-size: clamp(1.75rem, 3vw + 0.6rem, 2.5rem);
    color: #fff;
    text-shadow: 3px 3px 0 #000, 6px 6px 0 var(--primary);
    margin: 0 0 var(--space-2);
}
.cta-subline { color: #1c1917; font-size: 1.1rem; margin-bottom: var(--space-3); max-width: 60ch; }
.cta-micro {
    margin-top: var(--space-2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1c1917;
    font-weight: 700;
}
.cta-mascot img {
    border: 4px solid #000;
    border-radius: var(--radius-lg);
    background: var(--background);
    box-shadow: 6px 6px 0 var(--primary);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: var(--space-5) 0; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: var(--space-3);
}
.faq-item {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    border-left: 4px solid var(--accent);
    overflow: hidden;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.faq-item:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-card);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--background-alt);
    color: var(--foreground);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-text {
    font-family: "Bangers", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    color: var(--accent);
}
.faq-icon {
    color: var(--accent);
    font-family: "Bangers", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 200ms ease-out;
    min-width: 24px;
    text-align: center;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 18px 22px 22px;
    color: var(--foreground);
}
.faq-answer p { margin: 0; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 3px dashed var(--primary);
    border-radius: var(--radius);
    padding: var(--space-3);
    margin: var(--space-4) 0;
    position: relative;
}
.tldr-box::before {
    content: "TL;DR";
    position: absolute;
    top: -14px; left: 16px;
    background: var(--primary);
    color: #fff;
    font-family: "Bangers", sans-serif;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

.callout {
    background: var(--background-alt);
    border-left: 6px solid var(--accent);
    padding: var(--space-3);
    border-radius: 10px;
    margin: var(--space-3) 0;
}
.callout strong { color: var(--accent); font-family: "Bangers", sans-serif; letter-spacing: 0.04em; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
}
.stat-tile {
    background: var(--card);
    border: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
    box-shadow: 4px 4px 0 #000;
}
.stat-tile .num {
    font-family: "Bangers", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--accent);
    line-height: 1;
}
.stat-tile .lbl { font-size: 0.85rem; color: var(--muted-foreground); margin-top: 4px; display:block; }

.pullquote {
    font-family: "Bangers", sans-serif;
    font-size: clamp(1.3rem, 2vw + 0.6rem, 1.75rem);
    line-height: 1.2;
    color: var(--accent);
    border-left: 6px solid var(--primary);
    padding: 14px 20px;
    margin: var(--space-4) 0;
    background: var(--background-alt);
    border-radius: 0 14px 14px 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.pullquote cite {
    display: block;
    font-family: "Rubik", sans-serif;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 8px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) 0;
}
.trust-badge {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Tables */
.table-wrapper { max-width: 100%; overflow-x: auto; margin: var(--space-3) 0; border-radius: 14px; }
table.comic-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card);
    border: 3px solid var(--primary);
    border-radius: 14px;
    overflow: hidden;
    min-width: 480px;
}
.comic-table thead { background: #1e3a8a; color: #fff; }
.comic-table th, .comic-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comic-table th { font-family: "Bangers", sans-serif; letter-spacing: 0.04em; font-size: 1.05rem; }
.comic-table tbody tr:last-child td { border-bottom: 0; }
.comic-table tbody tr:nth-child(even) { background: var(--background-alt); }
.comic-table .row-highlight { background: rgba(251,146,60,0.15) !important; }

/* steps list */
.step-list { list-style: none; counter-reset: step; padding: 0; margin: var(--space-3) 0; display: grid; gap: var(--space-2); }
.step-list li {
    counter-increment: step;
    padding: 16px 16px 16px 64px;
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 14px; top: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: "Bangers", sans-serif;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    border: 3px solid #000;
}

/* Comic burst floating word */
.burst {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: "Bangers", sans-serif;
    padding: 8px 18px;
    border: 3px solid #000;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-6deg);
    box-shadow: 3px 3px 0 #000;
    letter-spacing: 0.04em;
}
.burst-orange { background: var(--accent); color: var(--accent-foreground); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #050a17;
    border-top: 4px solid var(--accent);
    color: var(--muted-foreground);
    padding: var(--space-5) 0 var(--space-3);
    margin-top: var(--space-6);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-3);
    display: grid;
    gap: var(--space-4);
    grid-template-columns: minmax(0,1fr);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: "Bangers", sans-serif; font-size: 1.4rem; color: var(--foreground); margin-bottom: 8px; }
.footer-tagline { font-size: 0.95rem; }
.footer-license { font-size: 0.85rem; color: var(--muted-foreground); }
.footer-heading {
    font-family: "Bangers", sans-serif;
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a { color: var(--muted-foreground); }
.footer-list a:hover { color: var(--accent); }
.footer-payments { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
    background: var(--secondary);
    border: 2px solid var(--border);
    color: var(--foreground);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.footer-badges { display: flex; gap: 10px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.age-badge {
    background: var(--destructive);
    color: #fff;
    font-family: "Bangers", sans-serif;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 1rem;
    border: 2px solid #000;
}
.resp-badge {
    background: var(--secondary);
    color: var(--foreground);
    border: 2px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-3) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.footer-bottom strong { color: var(--accent); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* Sitemap page tweaks */
.sitemap-grid .comic-card-title a {
    color: inherit;
    text-decoration: none;
}
.sitemap-grid .comic-card-title a:hover {
    color: var(--accent);
}