/* ============================================
   SLOTLOUNGE CASINO - DESIGN SYSTEM
   Anime-manga dark theme · cobalt + champagne gold
   Mobile-first, single dark theme (no toggle)
   ============================================ */

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

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(30, 144, 255, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(245, 197, 66, 0.08), transparent 55%);
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-deep); }

/* Inline links inside body text get underline for a11y */
.seo-text p a,
.faq-answer a,
.cta-band p a,
.section p a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(245, 197, 66, .55);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.seo-text p a:hover,
.faq-answer a:hover,
.cta-band p a:hover,
.section p a:hover {
    color: var(--accent-deep);
    text-decoration-color: var(--accent-deep);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
    font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--foreground);
    margin: 0 0 .6em;
    text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 5.4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 3.4vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: .08em; }
p { margin: 0 0 1.2em; }
strong { color: var(--foreground); font-weight: 700; }
.muted { color: var(--muted-foreground); }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245,197,66,.18);
}

.bonus-headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 14vw, 7rem);
    line-height: .95;
    letter-spacing: .02em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245,197,66,.25);
    text-shadow: 0 6px 30px rgba(245,197,66,.18);
}

/* ---------- LAYOUT WRAP ---------- */
.wrap, [class*="max-w-"] {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
}
@media (min-width: 768px) {
    .wrap, [class*="max-w-"] { padding-inline: 32px; }
}

section.section { padding-block: clamp(48px, 9vw, 112px); position: relative; }

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

/* ============================================
   HEADER - fixed, manga panel
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 14, 42, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
@media (min-width: 1024px) {
    .site-header { background: rgba(10, 14, 42, 0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    max-width: 1240px; margin-inline: auto;
    padding: 12px 20px;
    min-height: 68px;
}

.brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--foreground); text-decoration: none;
    flex-shrink: 0;
}
.brand-logo {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--gold-gradient);
    padding: 4px; box-shadow: var(--gold-glow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem; letter-spacing: .08em; color: var(--foreground);
}
.brand-tag {
    font-family: "Bebas Neue", sans-serif;
    font-size: .82rem; letter-spacing: .35em; color: var(--accent);
    margin-top: 2px;
}

/* Hamburger */
.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px;
    background: transparent; border: 1px solid var(--border-strong);
    border-radius: 10px; cursor: pointer;
    padding: 0 12px;
    z-index: 1001;
    transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: var(--accent); background: rgba(245,197,66,.06); }
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--accent);
    transition: transform .28s ease, opacity .28s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav drawer (mobile) */
.main-nav {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    z-index: 999;
    padding: 24px 20px 40px;
    overflow-y: auto;
    flex-direction: column;
    gap: 24px;
}
.main-nav.is-open { display: flex; }

.nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
}
.nav-link {
    display: flex; align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem; letter-spacing: .12em;
    color: var(--foreground);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    text-decoration: none;
}
.nav-link:hover, .nav-link:focus-visible {
    background: var(--card);
    border-left-color: var(--accent);
    color: var(--accent);
}

.nav-cta {
    display: flex; flex-direction: column; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Sakura header layer (decorative) */
.sakura-layer {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.sakura {
    position: absolute; width: 10px; height: 10px; border-radius: 60% 0;
    background: var(--gold-gradient);
    opacity: .55;
    animation: sakuraDrift linear infinite;
}
.sakura:nth-child(1){ left:10%; top:-10px; animation-duration: 14s; animation-delay: 0s; }
.sakura:nth-child(2){ left:30%; top:-20px; animation-duration: 18s; animation-delay: 2s; width:8px;height:8px; }
.sakura:nth-child(3){ left:55%; top:-15px; animation-duration: 16s; animation-delay: 4s; }
.sakura:nth-child(4){ left:72%; top:-25px; animation-duration: 20s; animation-delay: 1s; width:7px;height:7px; }
.sakura:nth-child(5){ left:85%; top:-10px; animation-duration: 15s; animation-delay: 3s; }
.sakura:nth-child(6){ left:92%; top:-20px; animation-duration: 19s; animation-delay: 5s; width:9px;height:9px; }

@keyframes sakuraDrift {
    0%   { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 0; }
    10%  { opacity: .7; }
    100% { transform: translate3d(-40px, 110vh, 0) rotate(540deg); opacity: 0; }
}

/* Spacer so fixed header doesn't cover content */
main#main-content { padding-top: 68px; }

/* Desktop nav */
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .main-nav {
        display: flex; flex-direction: row; align-items: center; justify-content: flex-end;
        position: static; padding: 0; background: transparent; border: none;
        gap: 28px; flex: 1; overflow: visible;
    }
    .nav-list { flex-direction: row; gap: 4px; }
    .nav-link {
        min-height: 44px; padding: 8px 14px; font-size: 1.05rem;
        border-left: none; border-bottom: 2px solid transparent;
        border-radius: 6px; letter-spacing: .14em;
    }
    .nav-link:hover { border-left-color: transparent; border-bottom-color: var(--accent); background: transparent; }
    .nav-cta { flex-direction: row; padding: 0; border: none; gap: 10px; }
    .header-inner { min-height: 76px; }
    main#main-content { padding-top: 76px; }
    .main-nav { top: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 22px; min-height: 48px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.05rem; letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--accent-foreground);
    border-color: rgba(245,197,66,.5);
    box-shadow: 0 6px 18px rgba(245,197,66,.25);
    position: relative;
    overflow: hidden;
}
.btn-gold::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: shimmer 3.2s ease-in-out infinite;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,197,66,.4); color: var(--accent-foreground); }

@keyframes shimmer {
    0%, 60% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

.btn-ghost {
    background: transparent; color: var(--foreground); border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(30,144,255,.06); }

.btn-cobalt {
    background: var(--primary-deep); color: #ffffff; border-color: var(--primary-deep);
    box-shadow: var(--cobalt-glow);
}
.btn-cobalt:hover { background: #084aa0; transform: translateY(-2px); color: #fff; border-color: #084aa0; }

.btn-xl { min-height: 56px; font-size: 1.25rem; padding: 18px 32px; letter-spacing: .16em; }
.btn-sm { min-height: 40px; padding: 10px 16px; font-size: .95rem; }
.btn-block { width: 100%; }

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    position: relative;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 14px 38px rgba(245,197,66,.18);
}
.game-card-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--secondary), var(--card-elevated));
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    overflow: hidden;
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card-placeholder {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: "Bebas Neue", sans-serif; font-size: 5rem;
    background: var(--gold-gradient);
    color: var(--accent-foreground);
}
.game-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold-gradient);
    color: var(--accent-foreground);
    font-family: "Bebas Neue", sans-serif; font-size: .9rem; font-weight: 700;
    padding: 6px 12px; border-radius: 6px; letter-spacing: .12em;
    box-shadow: 0 4px 14px rgba(245,197,66,.35);
    border: 1px solid rgba(10,14,42,.25);
}
.sakura-corner {
    position: absolute; top: 10px; right: 10px;
    width: 18px; height: 18px;
    background: var(--gold-gradient);
    border-radius: 60% 0;
    transform: rotate(25deg);
    opacity: .9;
}
.game-card-body {
    padding: 18px 18px 22px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.game-card-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.45rem; letter-spacing: .08em; margin: 0;
    color: var(--foreground);
}
.game-card-provider {
    margin: 0; font-size: .9rem; color: var(--muted-foreground);
    letter-spacing: .04em;
}
.game-card-stat {
    margin: 4px 0 8px; padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(30,144,255,.06);
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
    font-size: .92rem;
}
.stat-label { color: var(--muted-foreground); letter-spacing: .04em; }
.stat-value {
    font-family: "Bebas Neue", sans-serif; font-size: 1.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.game-card-body .btn { margin-top: auto; }

/* Game grid */
.game-grid {
    display: grid; gap: 24px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .game-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; } }
.game-grid.cols-4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .game-grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .game-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ============================================
   FAQ ACCORDION (uses <details>)
   ============================================ */
.faq-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: 12px;
    transition: border-color .28s ease, box-shadow .28s ease;
    overflow: hidden;
}
.faq-item[open] {
    border-left-color: var(--accent);
    box-shadow: var(--cobalt-glow);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem; letter-spacing: .06em;
    color: var(--foreground);
    line-height: 1.25;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent); }
.faq-icon {
    flex-shrink: 0;
    position: relative; width: 22px; height: 22px;
    transition: transform .28s ease;
}
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    background: var(--accent); border-radius: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after  { width: 2px; height: 14px; transition: transform .28s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
    padding: 0 24px 22px;
    color: var(--foreground);
    font-size: 1rem; line-height: 1.7;
}
.faq-answer p { margin: 0; }

@media (min-width: 768px) {
    .faq-question { padding: 26px 32px; font-size: 1.3rem; }
    .faq-answer { padding: 0 32px 26px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    margin-block: clamp(40px, 7vw, 80px);
    padding: clamp(48px, 8vw, 96px) 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(245,197,66,.12), transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(30,144,255,.18), transparent 55%),
        var(--background-deep);
    border-block: 1px solid var(--border);
    overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.speed-line {
    position: absolute;
    height: 2px; width: 80%;
    background: linear-gradient(90deg, transparent, rgba(30,144,255,.5), transparent);
    transform: rotate(-8deg);
    opacity: .4;
}
.speed-line:nth-child(1){ top: 22%; left: -10%; }
.speed-line:nth-child(2){ top: 55%; left: 0%; width: 60%; opacity: .3; }
.speed-line:nth-child(3){ top: 78%; left: -5%; width: 70%; opacity: .35; }

.cta-banner .sakura {
    position: absolute; opacity: .6; animation: sakuraDrift linear infinite;
}
.cta-banner .sakura:nth-child(4){ left: 15%; top: -10px; animation-duration: 12s; }
.cta-banner .sakura:nth-child(5){ left: 45%; top: -10px; animation-duration: 16s; animation-delay: 2s; }
.cta-banner .sakura:nth-child(6){ left: 70%; top: -10px; animation-duration: 14s; animation-delay: 4s; }
.cta-banner .sakura:nth-child(7){ left: 90%; top: -10px; animation-duration: 18s; animation-delay: 1s; }

.cta-banner-inner {
    position: relative;
    max-width: 1240px; margin-inline: auto;
    padding: 0 20px;
    display: grid; gap: 32px; align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .cta-banner-inner { grid-template-columns: 1.3fr 1fr; gap: 48px; padding: 0 32px; }
}
.cta-banner-text { text-align: center; }
@media (min-width: 1024px) { .cta-banner-text { text-align: left; } }

.cta-eyebrow {
    font-family: "Bebas Neue", sans-serif;
    color: var(--primary);
    letter-spacing: .35em;
    font-size: 1rem;
    margin: 0 0 12px;
}
.cta-headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.6rem, 9vw, 5.5rem);
    line-height: .95; margin: 0 0 18px;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    -webkit-text-stroke: 1px rgba(245,197,66,.18);
}
.cta-headline .alt { color: var(--foreground); -webkit-text-fill-color: var(--foreground); display:block; font-size: 70%; }
.cta-subline {
    color: var(--foreground); font-size: 1.1rem; margin: 0 0 28px; max-width: 56ch;
}
@media (min-width: 1024px) { .cta-subline { margin-left: 0; } }
.cta-banner-text .cta-subline { margin-inline: auto; }
@media (min-width: 1024px) { .cta-banner-text .cta-subline { margin-left: 0; margin-right: auto; } }

.cta-micro {
    margin-top: 14px;
    color: var(--muted-foreground);
    font-size: .82rem; letter-spacing: .04em;
}

.cta-banner-mascot {
    display: flex; justify-content: center;
    position: relative;
}
.cta-banner-mascot img {
    max-width: 360px; width: 100%; height: auto;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
    animation: mascotFloat 6s ease-in-out infinite;
}
@media (min-width: 1024px) { .cta-banner-mascot img { max-width: 480px; } }

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-10px) rotate(1deg); }
}

/* ============================================
   PROMO CODE ROW
   ============================================ */
.promo-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 20px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
}
.promo-row + .promo-row { margin-top: 14px; }
.promo-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--cobalt-glow);
    border-color: var(--primary);
    border-left-color: var(--accent);
}

.promo-tag {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    color: var(--primary);
    letter-spacing: .18em;
    font-size: 1.4rem;
    padding: 6px 14px;
    background: rgba(30,144,255,.1);
    border-radius: 8px;
    border: 1px solid rgba(30,144,255,.3);
}

.promo-offer-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.05; margin: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.promo-meta {
    list-style: none; padding: 0; margin: 12px 0 0;
    display: flex; flex-wrap: wrap; gap: 8px 18px;
    color: var(--muted-foreground); font-size: .88rem;
}
.promo-meta li { position: relative; padding-left: 14px; }
.promo-meta li::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 6px; height: 6px; border-radius: 60% 0;
    background: var(--accent); transform: translateY(-50%) rotate(20deg);
}

.promo-row-code {
    display: flex; flex-direction: column; gap: 12px; align-items: stretch;
}
.promo-code-pill {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    padding: 10px 18px;
    border: 2px dashed var(--accent);
    border-radius: 999px;
    background: rgba(245,197,66,.06);
    text-align: center;
    min-height: 56px;
}
.code-label { font-size: .7rem; letter-spacing: .25em; color: var(--muted-foreground); }
.code-value {
    font-family: "Bebas Neue", "Courier New", monospace;
    font-size: 1.35rem; letter-spacing: .12em;
    color: var(--accent);
}

@media (min-width: 768px) {
    .promo-row {
        grid-template-columns: 180px 1fr 220px;
        align-items: center;
        padding: 24px 28px;
        gap: 24px;
    }
    .promo-row-code { flex-direction: column; }
}

/* ============================================
   PROVIDER LOGO GRID
   ============================================ */
.provider-grid-wrap { position: relative; }
.provider-grid-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem; letter-spacing: .12em;
    color: var(--foreground);
    text-align: center;
    margin: 0 0 22px;
    padding-bottom: 12px;
    position: relative;
}
.provider-grid-heading::after {
    content: ""; position: absolute; left: 50%; bottom: 0;
    width: 64px; height: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 2px;
}
.provider-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0,1fr)); gap: 24px; } }
.provider-tile {
    aspect-ratio: 1.6 / 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid; place-items: center;
    padding: 16px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.provider-tile:hover {
    transform: scale(1.04);
    border-color: var(--accent);
    background: var(--card-elevated);
}
.provider-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.05rem; letter-spacing: .1em;
    color: var(--foreground);
    text-align: center;
    transition: color .25s ease;
}
.provider-tile:hover .provider-name {
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

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

/* TL;DR / Summary */
.tldr-box {
    background: linear-gradient(135deg, rgba(30,144,255,.1), rgba(245,197,66,.06));
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 28px 0;
}
.tldr-box h3 {
    font-size: 1.25rem; margin: 0 0 10px;
    color: var(--accent); letter-spacing: .14em;
}
.tldr-box p:last-child { margin: 0; }

/* Callout */
.callout {
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    background: var(--card);
    padding: 18px 22px;
    border-radius: 12px;
    margin: 24px 0;
}
.callout-info { border-left-color: var(--primary); }
.callout-warn { border-left-color: #f5a742; }
.callout strong { color: var(--accent); }

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.stat-highlight .number {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-highlight .label {
    display: block; margin-top: 8px;
    color: var(--muted-foreground);
    letter-spacing: .12em; font-size: .9rem; text-transform: uppercase;
}
.stat-highlight .source { display: block; font-size: .75rem; color: var(--muted-foreground); margin-top: 4px; }

.stat-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin: 28px 0;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* Pull quote */
.pull-quote {
    margin: 36px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
    background: var(--card);
    border-radius: 0 14px 14px 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.3; letter-spacing: .04em;
    color: var(--foreground);
}
.pull-quote cite {
    display: block; margin-top: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: .9rem; font-style: normal;
    color: var(--muted-foreground); letter-spacing: .08em;
}

/* CTA section band */
.cta-band {
    background: linear-gradient(135deg, var(--card-elevated), var(--secondary));
    border: 1px solid var(--accent);
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    margin: 48px 0;
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.cta-band h3 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 0 0 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-band p { margin: 0 0 20px; color: var(--foreground); }
.cta-band small { display: block; margin-top: 12px; color: var(--muted-foreground); font-size: .82rem; }

/* Trust badges row */
.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    list-style: none; padding: 0; margin: 28px 0;
}
.trust-row li {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 10px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .14em;
    color: var(--foreground);
    font-size: .95rem;
}

/* Comparison table */
.cmp-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 12px; border: 1px solid var(--border); }
.cmp-table {
    width: 100%; border-collapse: collapse;
    background: var(--card);
    min-width: 480px;
}
.cmp-table th, .cmp-table td {
    padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.cmp-table thead th {
    font-family: "Bebas Neue", sans-serif; letter-spacing: .12em;
    color: var(--accent); background: var(--secondary);
    font-weight: 400; font-size: 1rem;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .recommended {
    background: rgba(245,197,66,.08);
    color: var(--accent); font-weight: 700;
}
.cmp-table tr:hover td { background: rgba(30,144,255,.05); }

/* Social proof / testimonials */
.testimonial-grid {
    display: grid; gap: 20px;
    grid-template-columns: minmax(0,1fr);
    margin: 32px 0;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    position: relative;
}
.testimonial::before {
    content: "★★★★★";
    color: var(--accent);
    letter-spacing: .15em;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}
.testimonial blockquote {
    margin: 0 0 14px; padding: 0;
    font-style: italic; color: var(--foreground);
    line-height: 1.6;
}
.testimonial cite {
    display: block; font-style: normal;
    color: var(--muted-foreground);
    font-size: .88rem; letter-spacing: .04em;
}

/* Section heading helper */
.section-eyebrow {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    color: var(--primary); letter-spacing: .3em;
    font-size: .9rem; margin: 0 0 12px;
}
.section-title-wrap { margin-bottom: 32px; }
.section-title-wrap.center { text-align: center; }

/* Tile links (site navigator) */
.tile-link-grid {
    display: grid; gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    margin: 28px 0;
}
@media (min-width: 600px) { .tile-link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .tile-link-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.tile-link {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    color: var(--foreground);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.tile-link::before {
    content: ""; position: absolute; top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: var(--gold-gradient);
    border-radius: 60% 0;
    opacity: .15;
    transform: rotate(20deg);
    transition: opacity .3s ease;
}
.tile-link:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 14px 28px rgba(245,197,66,.18);
    color: var(--foreground);
}
.tile-link:hover::before { opacity: .3; }
.tile-link h3 {
    font-size: 1.5rem; margin: 0 0 8px;
    color: var(--accent); letter-spacing: .08em;
}
.tile-link p { margin: 0 0 12px; font-size: .92rem; color: var(--muted-foreground); }
.tile-link-arrow {
    font-family: "Bebas Neue", sans-serif;
    color: var(--primary); letter-spacing: .14em; font-size: .95rem;
}

/* Two-column text */
.two-col-text {
    display: grid; gap: 24px;
    grid-template-columns: minmax(0,1fr);
}
@media (min-width: 1024px) { .two-col-text { grid-template-columns: 1fr 1fr; gap: 40px; } }

/* SEO long-form text block */
.seo-text {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px;
    margin-top: 32px;
}
.seo-text h2, .seo-text h3 { color: var(--accent); }
.seo-text p { color: var(--foreground); }
@media (min-width: 1024px) { .seo-text { padding: 48px 56px; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    padding-top: 56px;
    margin-top: 80px;
}
.footer-inner {
    max-width: 1240px; margin-inline: auto;
    padding: 0 20px 32px;
    display: grid; gap: 36px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0,1fr)); padding-inline: 32px; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer-brand .brand { margin-bottom: 14px; }
.footer-about { color: var(--muted-foreground); font-size: .95rem; line-height: 1.6; margin: 0; }

.footer-title {
    font-family: "Bebas Neue", sans-serif;
    color: var(--accent);
    letter-spacing: .18em; font-size: 1.1rem;
    margin: 0 0 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--foreground); font-size: .95rem; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

.payment-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.pay-badge {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    text-align: center;
    padding: 8px 6px;
    border-radius: 6px;
    font-family: "Bebas Neue", sans-serif;
    font-size: .9rem; letter-spacing: .1em;
}

.license-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.license-badge {
    display: flex; align-items: baseline; gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--muted-foreground);
}
.license-badge strong {
    font-family: "Bebas Neue", sans-serif;
    color: var(--accent);
    letter-spacing: .12em;
    font-size: 1rem;
    flex-shrink: 0;
}
.responsible-note { color: var(--muted-foreground); font-size: .82rem; margin: 0; line-height: 1.5; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    color: var(--muted-foreground);
    font-size: .82rem;
}
@media (min-width: 768px) { .footer-bottom { padding: 24px 32px; } }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .sakura, .btn-gold::before, .cta-banner-mascot img { animation: none; }
}

/* ============================================
   MISC
   ============================================ */
::selection { background: var(--accent); color: var(--accent-foreground); }

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

/* ============================================
   FAQ PAGE - narrow readable layout
   ============================================ */
.faq-wrap { max-width: 920px; }

.faq-hero { padding-top: clamp(40px, 7vw, 80px); padding-bottom: clamp(32px, 6vw, 64px); }
.faq-hero-grid {
    display: grid; gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
@media (min-width: 768px) {
    .faq-hero-grid { grid-template-columns: 1.5fr 1fr; gap: 40px; }
}
.faq-hero-mascot { display: flex; justify-content: center; }
.faq-hero-mascot img {
    max-width: 320px; width: 100%;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,.5));
    animation: mascotFloat 6s ease-in-out infinite;
}
@media (min-width: 768px) { .faq-hero-mascot img { max-width: 360px; } }

/* DACH availability cards */
.dach-grid {
    display: grid; gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 24px;
}
@media (min-width: 768px) { .dach-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; } }
.dach-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 14px;
    padding: 22px 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.dach-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 12px 26px rgba(245,197,66,.14);
}
.dach-card h3 {
    font-size: 1.35rem; margin: 0 0 10px;
    letter-spacing: .08em;
    color: var(--accent);
}
.dach-card p { margin: 0; color: var(--foreground); font-size: .98rem; line-height: 1.65; }

/* FAQ page lists */
.faq-wrap ol, .faq-wrap ul:not(.promo-meta):not(.trust-row):not(.payment-grid):not(.license-list):not(.provider-grid):not(.footer-links):not(.nav-list) {
    margin: 0 0 20px;
    padding-left: 22px;
}
.faq-wrap ol li, .faq-wrap ul:not(.promo-meta):not(.trust-row):not(.payment-grid):not(.license-list):not(.provider-grid):not(.footer-links):not(.nav-list) li {
    margin-bottom: 8px;
    color: var(--foreground);
}

/* Bonus stub page */
.bonus-stub {
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 32px 20px;
    background:
        radial-gradient(ellipse at center, rgba(30,144,255,.15), transparent 60%),
        var(--background);
}
.bonus-stub-card {
    width: 100%; max-width: 480px;
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--gold-glow);
    position: relative;
}
.bonus-stub-logo {
    width: 80px; height: 80px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: var(--gold-gradient);
    display: grid; place-items: center;
    box-shadow: var(--gold-glow);
    position: relative;
}
.bonus-stub-logo::before {
    content: ""; position: absolute; top: 8px; right: 8px;
    width: 14px; height: 14px;
    background: var(--accent-foreground);
    border-radius: 60% 0;
    transform: rotate(25deg);
    opacity: .35;
}
.bonus-stub-monogram {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem; line-height: 1;
    color: var(--accent-foreground);
    letter-spacing: .02em;
}
.bonus-stub-brand {
    display: flex; flex-direction: column; gap: 2px;
    margin: 0 0 22px;
    line-height: 1;
}
.bonus-stub-brand-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem; letter-spacing: .1em;
    color: var(--foreground);
}
.bonus-stub-brand-tag {
    font-family: "Bebas Neue", sans-serif;
    font-size: .9rem; letter-spacing: .4em;
    color: var(--accent);
}
.bonus-stub-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    letter-spacing: .08em;
    margin: 0 0 14px;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-stub-text {
    color: var(--foreground);
    font-size: 1rem; line-height: 1.6;
    margin: 0 0 8px;
}
.bonus-stub-text strong { color: var(--accent); }
.bonus-stub-micro {
    margin: 18px 0 0;
    color: var(--muted-foreground);
    font-size: .78rem; letter-spacing: .08em;
}
.pulse-dot {
    display: inline-block;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent);
    margin-top: 18px;
    animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .6; box-shadow: 0 0 0 0 rgba(245,197,66,.6); }
    50%      { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 14px rgba(245,197,66,0); }
}