/* ============================================
   CRAZYBUZZER CASINO - DESIGN SYSTEM
   Manga-style yellow/black with pink accents
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

[class*="grid"] > *,
[class*="flex"] > * { min-width: 0; }

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper, [class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: "Noto Sans", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        repeating-linear-gradient(15deg, transparent 0 60px, rgba(245,197,24,0.04) 60px 62px);
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; line-height: 1.15; }

.font-bangers, h1, .h1, h2, .h2 {
    font-family: "Bangers", "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
}

h1, .h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
    text-transform: uppercase;
    transform: rotate(-1.5deg);
    display: inline-block;
}

h2, .h2 {
    font-size: clamp(1.8rem, 5vw, 2.625rem);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h3, .h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h4 { font-size: 1.25rem; font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; text-transform: uppercase; }

p { margin: 0 0 1rem; }
p + p { margin-top: 0; }

a { color: var(--foreground); text-decoration: underline; text-decoration-color: var(--primary); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .4rem; }

strong, b { font-weight: 700; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--secondary); color: var(--secondary-foreground);
    padding: .5rem 1rem; z-index: 9999; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container--narrow { max-width: 880px; }

.section {
    padding: 56px 0;
    position: relative;
}
@media (min-width: 1024px) {
    .section { padding: 96px 0; }
}

.section--alt { background: var(--muted); }
.section--dark { background: var(--secondary); color: var(--secondary-foreground); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--secondary-foreground); }
.section--dark a { color: var(--primary); }

.section--yellow {
    background: var(--primary);
    background-image: repeating-linear-gradient(15deg, transparent 0 38px, rgba(0,0,0,0.06) 38px 40px);
    color: var(--primary-foreground);
}

/* Diagonal divider */
.divider-zigzag {
    height: 14px;
    background:
        linear-gradient(135deg, var(--secondary) 25%, transparent 25%) 0 0/16px 16px,
        linear-gradient(225deg, var(--secondary) 25%, transparent 25%) 0 0/16px 16px;
    background-color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-bottom: 3px solid var(--primary);
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
}
.header-zigzag {
    height: 8px;
    background:
        linear-gradient(135deg, var(--primary) 25%, transparent 25%) 0 0/12px 12px,
        linear-gradient(225deg, var(--primary) 25%, transparent 25%) 0 0/12px 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: inherit;
}
.brand .logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--secondary);
    box-shadow: 3px 3px 0 var(--primary);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Bangers", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--primary);
}
.brand-sub {
    font-family: "Bebas Neue", sans-serif;
    font-size: .75rem;
    letter-spacing: 2px;
    color: #d6cfb4;
    margin-top: 2px;
}

/* Mobile nav drawer */
.site-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    color: var(--foreground);
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem 1.25rem 2rem;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 3px solid var(--primary);
}
.site-nav.is-open { display: flex; }

.nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
}
.nav-list li { margin: 0; }
.nav-link {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--foreground);
    border-bottom: 2px solid var(--muted);
}
.nav-link:hover, .nav-link[aria-current="page"] {
    background: var(--primary);
    color: var(--primary-foreground);
}
.nav-cta { display: flex; flex-direction: column; gap: .75rem; }

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: var(--primary);
    border: 2px solid var(--secondary);
    box-shadow: 3px 3px 0 var(--primary);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    height: 3px; width: 100%;
    background: var(--secondary);
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .site-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
        background: transparent;
        color: inherit;
        border: none;
        overflow: visible;
    }
    .nav-list { flex-direction: row; gap: .5rem; }
    .nav-link {
        min-height: 44px;
        padding: 0 .85rem;
        color: var(--secondary-foreground);
        border-bottom: 3px solid transparent;
    }
    .nav-link:hover, .nav-link[aria-current="page"] {
        background: transparent;
        color: var(--primary);
        border-bottom-color: var(--primary);
    }
    .nav-cta { flex-direction: row; gap: .65rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: 0 1.5rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--secondary);
    box-shadow: 4px 4px 0 var(--secondary);
    cursor: pointer;
    transition: transform .2s cubic-bezier(0.34,1.56,0.64,1), box-shadow .2s ease, background .2s ease;
    line-height: 1;
}
.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--secondary);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--secondary); }

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}
.btn-primary:hover { background: #ffd83a; color: var(--primary-foreground); }

.btn-secondary {
    background: var(--secondary);
    color: var(--primary);
}
.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 6px 6px 0 var(--secondary), 0 0 24px rgba(245,197,24,0.5);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--secondary-foreground);
    border-color: var(--secondary-foreground);
    box-shadow: 4px 4px 0 var(--primary);
}
.btn-ghost-dark:hover { background: var(--secondary-foreground); color: var(--secondary); }

.btn-large {
    min-height: 56px;
    padding: 0 2rem;
    font-size: 1.25rem;
}

.btn-block { width: 100%; }

/* ============================================
   STICKERS - Manga sound effects
   ============================================ */
.sticker {
    display: inline-block;
    font-family: "Bangers", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: .35rem .9rem;
    transform: rotate(-5deg);
    border: 3px solid var(--secondary);
    box-shadow: 3px 3px 0 var(--secondary);
}
.sticker--yellow { background: var(--primary); color: var(--secondary); }
.sticker--black { background: var(--secondary); color: var(--primary); }
.sticker--pink { background: var(--accent); color: #fff; }

/* ============================================
   PANELS - Manga panel cards
   ============================================ */
.panel {
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    padding: 1.25rem;
    position: relative;
}
@media (min-width: 768px) { .panel { padding: 1.75rem; } }
.panel:hover { box-shadow: 10px 10px 0 var(--secondary); }

.panel--double {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid { gap: 1.75rem; } }

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

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-6 { grid-template-columns: repeat(3, 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)); }
    .grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 56px 0 80px;
    overflow: clip;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(245,197,24,0.35), transparent 55%),
        repeating-linear-gradient(15deg, transparent 0 60px, rgba(245,197,24,0.08) 60px 64px);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .hero { padding: 96px 0 120px; }
    .hero__inner { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}
.hero__eyebrow {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.hero__title {
    color: var(--secondary-foreground);
    margin-bottom: 1rem;
}
.hero__title em {
    font-style: normal;
    color: var(--primary);
    text-shadow: 4px 4px 0 var(--secondary);
}
.hero__lead {
    font-size: 1.125rem;
    max-width: 50ch;
    margin-bottom: 1.5rem;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
    font-size: .9rem;
    color: #d6cfb4;
}
.hero__trust .badge-18 { color: var(--primary); }
.hero__visual {
    position: relative;
    text-align: center;
}
.hero__visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 0 var(--primary));
}
.hero__sticker {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 2;
}

/* ============================================
   SLOT CARD
   ============================================ */
.slot-card {
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s cubic-bezier(0.34,1.56,0.64,1), box-shadow .25s ease;
    min-width: 0;
}
.slot-card:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 0 var(--secondary);
}
.slot-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary);
}
.slot-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.slot-card:hover .slot-card__media img { transform: rotate(2deg) scale(1.05); }
.slot-card__lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(105deg, transparent 0 24px, rgba(255,255,255,0.0) 24px 26px);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.slot-card:hover .slot-card__lines {
    opacity: 1;
    background: repeating-linear-gradient(105deg, transparent 0 24px, rgba(255,255,255,0.5) 24px 27px);
}
.slot-card__body {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    flex: 1;
}
.slot-card__title {
    font-family: "Bangers", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--secondary);
}
.slot-card__provider {
    font-family: "Bebas Neue", sans-serif;
    font-size: .95rem;
    letter-spacing: 1.5px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin: 0;
}
.slot-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.badge {
    display: inline-block;
    padding: .3rem .55rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--secondary);
    line-height: 1;
}
.badge--yellow { background: var(--primary); color: var(--secondary); }
.badge--black { background: var(--secondary); color: var(--primary); }
.badge--pink { background: var(--accent); color: #fff; }

.slot-card__cta { margin-top: auto; }

/* Horizontal scroll on mobile */
.slot-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .5rem .25rem 1.25rem;
    scrollbar-width: thin;
}
.slot-scroll > * { scroll-snap-align: start; }
@media (min-width: 768px) {
    .slot-scroll {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-columns: auto;
        overflow-x: visible;
        gap: 1.5rem;
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .slot-scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .slot-scroll--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    position: relative;
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
}
.bonus-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 var(--secondary);
}
.bonus-card--featured {
    background: var(--primary);
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}
.bonus-card .sticker {
    position: absolute;
    top: -14px; right: 14px;
    transform: rotate(-5deg);
    z-index: 2;
}
.bonus-card__image {
    text-align: center;
}
.bonus-card__image img {
    max-width: 160px;
    filter: drop-shadow(4px 4px 0 var(--secondary));
}
.bonus-card__amount {
    font-family: "Bangers", sans-serif;
    font-size: clamp(2rem, 6vw, 2.6rem);
    letter-spacing: 1px;
    margin: 0;
    color: var(--secondary);
}
.bonus-card__subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0;
}
.bonus-card__desc { margin: 0; font-size: 1rem; color: var(--muted-foreground); }

.check-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
    margin: 0;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    width: 1.25rem; height: 1.25rem;
    background: var(--primary);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    line-height: 1;
}

.bonus-card__cta { margin-top: auto; min-height: 56px; font-size: 1.2rem; }

/* ============================================
   INFO CARD
   ============================================ */
.info-card {
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    transition: transform .2s ease, box-shadow .2s ease;
    min-width: 0;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 0 var(--secondary);
}
@media (min-width: 768px) { .info-card { padding: 1.75rem; } }

.info-card__icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--secondary);
    box-shadow: 3px 3px 0 var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.info-card__icon img { width: 60px; height: 60px; object-fit: contain; }
.info-card__icon-text {
    font-family: "Bangers", sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
}
.info-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    color: var(--secondary);
}
.info-card__desc {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--primary);
    background-image: repeating-linear-gradient(15deg, transparent 0 40px, rgba(0,0,0,0.07) 40px 42px);
    padding: 56px 1.25rem;
    color: var(--primary-foreground);
    border-top: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
    position: relative;
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: 96px 1.25rem; } }

.cta-banner__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
}
@media (min-width: 768px) {
    .cta-banner__inner { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); text-align: left; }
}

.cta-banner__visual { text-align: center; }
.cta-banner__visual img {
    max-width: 320px;
    filter: drop-shadow(6px 6px 0 var(--secondary));
}

.cta-banner__content { position: relative; }
.cta-banner__content .sticker {
    position: absolute;
    top: -2.5rem; right: 0;
    transform: rotate(8deg);
}
.cta-banner__headline {
    font-family: "Bangers", sans-serif;
    font-size: clamp(2.4rem, 7vw, 3.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--secondary);
    transform: rotate(-1.5deg);
    display: inline-block;
}
.cta-banner__subtext {
    font-size: 1.125rem;
    color: var(--secondary);
    margin: 0 0 1.5rem;
    max-width: 50ch;
}
.cta-banner__microcopy {
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--secondary);
    opacity: .85;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
}
.faq-item {
    border-bottom: 2px solid var(--secondary);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    min-height: 56px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    transition: background .15s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: var(--muted); }

.faq-toggle {
    width: 32px; height: 32px;
    background: var(--primary);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bangers", sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform .25s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }

.faq-item__q-text { flex: 1; }

.faq-item__a {
    padding: 1rem 1.25rem 1.5rem 4.25rem;
    background: var(--muted);
    border-left: 4px solid var(--primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
}
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a a { font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 56px 1.25rem 1.5rem;
    border-top: 4px solid var(--primary);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand .logo {
    width: 48px; height: 48px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
}
.footer-brand .brand-name { color: var(--primary); }
.footer-brand .brand-sub { color: #d6cfb4; }
.footer-copy {
    margin-top: 1rem;
    color: #d6cfb4;
    font-size: .95rem;
}

.footer-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--primary);
}
.footer-list, .payment-logos {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-list li { margin-bottom: .5rem; }
.footer-list a {
    color: #e8e0c4;
    text-decoration: none;
    font-size: .95rem;
}
.footer-list a:hover { color: var(--primary); text-decoration: underline; }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.pay-badge {
    display: inline-block;
    padding: .35rem .65rem;
    background: #2a2418;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-trust {
    max-width: 1240px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 2px solid #3a3320;
    text-align: center;
}
.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    font-family: "Bangers", sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}
.badge-ggl {
    padding: .4rem .75rem;
    background: var(--primary);
    color: var(--secondary);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1.5px;
    font-size: .85rem;
    text-transform: uppercase;
}
.trust-text {
    flex: 1 1 280px;
    color: #d6cfb4;
    font-size: .9rem;
    text-align: center;
    max-width: 60ch;
}
.footer-copyright {
    margin: 0;
    font-size: .8rem;
    color: #c2b88f;
}

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

/* TL;DR / Summary box */
.tldr-box {
    background: var(--muted);
    border: 3px solid var(--secondary);
    border-left-width: 8px;
    border-left-color: var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.tldr-box__label {
    display: inline-block;
    font-family: "Bangers", sans-serif;
    font-size: 1.1rem;
    background: var(--primary);
    color: var(--secondary);
    padding: .15rem .65rem;
    margin-bottom: .5rem;
    transform: rotate(-2deg);
}

/* Callout / highlight */
.callout {
    background: var(--card);
    border: 3px solid var(--secondary);
    border-left-width: 8px;
    border-left-color: var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.callout--warning { border-left-color: var(--destructive); }
.callout--info { border-left-color: var(--primary); }
.callout__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 .5rem;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 1.25rem;
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--primary);
}
.stat-highlight__number {
    display: block;
    font-family: "Bangers", sans-serif;
    font-size: clamp(2.2rem, 6vw, 3rem);
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 1px;
}
.stat-highlight__label {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: .35rem;
}
.stat-highlight__source {
    display: block;
    font-size: .8rem;
    color: var(--muted-foreground);
    margin-top: .35rem;
}

/* Pull quote */
.pull-quote {
    border-left: 6px solid var(--primary);
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: .5px;
    color: var(--secondary);
    background: var(--muted);
}
.pull-quote cite {
    display: block;
    margin-top: .75rem;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-size: .9rem;
    color: var(--muted-foreground);
}

/* Comparison table */
.comparison-table-wrap {
    overflow-x: auto;
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    background: var(--card);
}
.comparison-table-wrap:focus { outline: 3px solid var(--primary); outline-offset: 2px; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}
.comparison-table th, .comparison-table td {
    padding: .9rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--secondary);
    font-size: .95rem;
}
.comparison-table thead th {
    background: var(--primary);
    color: var(--secondary);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--secondary);
}
.comparison-table tbody tr:nth-child(even) { background: var(--muted); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .recommended {
    background: rgba(245,197,24,0.18);
    font-weight: 600;
}

/* Steps / Process */
.steps {
    counter-reset: step;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    list-style: none;
    padding: 0;
}
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.step {
    position: relative;
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--primary);
    padding: 1.5rem 1.25rem 1.25rem;
    margin: 0;
    counter-increment: step;
}
.step::before {
    content: "0" counter(step);
    position: absolute;
    top: -22px; left: 12px;
    font-family: "Bangers", sans-serif;
    font-size: 1.8rem;
    background: var(--primary);
    color: var(--secondary);
    padding: .15rem .65rem;
    border: 3px solid var(--secondary);
    transform: rotate(-3deg);
    line-height: 1;
}
.step h3 {
    margin: .5rem 0 .5rem;
    font-size: 1.2rem;
}
.step p { margin: 0; font-size: .95rem; color: var(--muted-foreground); }

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
}
.trust-badges li {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    padding: .5rem 1rem;
    border: 2px solid var(--muted-foreground);
}

/* Internal link tiles */
.link-tiles {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .link-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .link-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.link-tiles--3 { }
@media (min-width: 1024px) { .link-tiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.link-tile {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.25rem;
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 6px 6px 0 var(--secondary);
    text-decoration: none;
    color: var(--secondary);
    transition: transform .2s ease, box-shadow .2s ease;
    min-height: 160px;
}
.link-tile:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 var(--primary);
}
.link-tile__icon {
    font-family: "Bangers", sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    text-shadow: 2px 2px 0 var(--secondary);
}
.link-tile__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}
.link-tile__desc {
    margin: 0;
    font-size: .95rem;
    color: var(--muted-foreground);
}
.link-tile__cta {
    margin-top: auto;
    font-family: "Bebas Neue", sans-serif;
    font-size: .95rem;
    letter-spacing: 1.5px;
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
}

/* SEO Text */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}
.seo-text h2, .seo-text h3 { margin-top: 1.5em; }
.seo-text p { margin-bottom: 1.1rem; }
.seo-text a { font-weight: 600; }

/* Provider logo grid */
.provider-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.provider-tile {
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 4px 4px 0 var(--secondary);
    padding: 1rem;
    text-align: center;
    font-family: "Bangers", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--secondary);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}
.provider-tile:hover {
    transform: rotate(-2deg) scale(1.02);
    background: var(--primary);
}

/* Animation on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s cubic-bezier(0.34,1.56,0.64,1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slot filter buttons */
.slot-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.slot-filter {
    min-height: 44px;
    padding: 0 1rem;
    background: var(--card);
    border: 3px solid var(--secondary);
    box-shadow: 3px 3px 0 var(--secondary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.slot-filter:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--secondary);
}
.slot-filter.is-active {
    background: var(--primary);
    color: var(--secondary);
}

#slot-grid > [data-mechanics] { min-width: 0; }
#slot-grid > [data-mechanics][hidden] { display: none; }

/* Section heading helper */
.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-head__eyebrow {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c2185b;
    font-size: .9rem;
    margin-bottom: .5rem;
}
.section--yellow .section-head__eyebrow,
.section--dark .section-head__eyebrow { color: var(--accent); }

/* Accent eyebrow on light/muted backgrounds - needs darker pink for AA contrast */
.hero__eyebrow--accent-dark { color: #c2185b; }
.section-head h2 { margin-bottom: .5rem; }
.section-head p {
    max-width: 60ch;
    margin: 0 auto;
    color: var(--muted-foreground);
}

/* Manga panel grid (asymmetric feel) */
.manga-split {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
@media (min-width: 1024px) {
    .manga-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .manga-split--reverse > :first-child { order: 2; }
}
.manga-split__visual { text-align: center; }
.manga-split__visual img {
    max-width: 100%;
    filter: drop-shadow(6px 6px 0 var(--primary));
}

/* Hero variants by page */
.hero--bonus::before {
    background:
        radial-gradient(circle at 30% 50%, rgba(255,92,138,0.25), transparent 55%),
        repeating-linear-gradient(15deg, transparent 0 60px, rgba(245,197,24,0.08) 60px 64px);
}
.hero--slots::before {
    background:
        radial-gradient(circle at 60% 40%, rgba(245,197,24,0.45), transparent 55%),
        repeating-linear-gradient(-15deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 64px);
}
.hero--quiet {
    background: var(--muted);
    color: var(--foreground);
}
.hero--quiet::before {
    background: repeating-linear-gradient(15deg, transparent 0 60px, rgba(245,197,24,0.1) 60px 64px);
}
.hero--quiet .hero__title { color: var(--foreground); }
.hero--quiet .hero__eyebrow { color: var(--accent); }

/* Join page (redirect stub) */
.redirect-stub {
    min-height: 100vh;
    background: var(--secondary);
    color: var(--secondary-foreground);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: clip;
}
.redirect-stub::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(245,197,24,0.35), transparent 60%),
        repeating-linear-gradient(15deg, transparent 0 50px, rgba(245,197,24,0.08) 50px 54px);
    pointer-events: none;
    animation: vortex 18s linear infinite;
}
@keyframes vortex { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.redirect-stub__inner {
    position: relative;
    max-width: 520px;
}
.redirect-stub__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2rem;
}
.redirect-stub__logo img {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}
.redirect-stub__logo span {
    font-family: "Bangers", sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 2px;
}
.redirect-stub__visual { margin: 1rem 0 1.5rem; }
.redirect-stub__visual img {
    max-width: 280px;
    filter: drop-shadow(6px 6px 0 var(--primary));
}
.redirect-stub__heading {
    font-family: "Bangers", sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary);
    letter-spacing: 2px;
    transform: rotate(-3deg);
    display: inline-block;
    margin: 0 0 1rem;
}
.redirect-stub__sub {
    color: #d6cfb4;
    font-size: 1rem;
    margin: 0 0 1.5rem;
}
.spinner {
    width: 48px; height: 48px;
    border: 5px solid rgba(245,197,24,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Speed lines decorative wrapper */
.speed-lines-bg {
    position: relative;
}
.speed-lines-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(15deg, transparent 0 80px, rgba(245,197,24,0.12) 80px 84px);
    pointer-events: none;
    z-index: 0;
}
.speed-lines-bg > * { position: relative; z-index: 1; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }