/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --bg: #0A0E1A;
    --surface: #131A2C;
    --surface-2: #1A2338;
    --fg: #E8EEF9;
    --muted: #93A3C4;
    --cyan: #22D3EE;
    --violet: #A855F7;
    --lime: #4ADE80;
    --border: rgba(147, 163, 196, 0.16);
    --grad: linear-gradient(120deg, #22D3EE 0%, #A855F7 100%);
    --radius-card: 16px;
    --radius-btn: 12px;
    --container: 1180px;
    --shadow-glow: 0 12px 40px rgba(34, 211, 238, 0.18);
    --header-bg: rgba(10, 14, 26, 0.96);
    --footer-bg: #070A12;
    --inset-bg: rgba(10, 14, 26, 0.5);
}

/* Light theme: same design language, surfaces/text swapped via variables */
:root[data-theme="light"],
:root.light,
body[data-theme="light"] {
    --bg: #F5F8FD;
    --surface: #FFFFFF;
    --surface-2: #E9F0FA;
    --fg: #0A0E1A;
    --muted: #46587A;
    --cyan: #0E9BB5;
    --violet: #8B3FD9;
    --lime: #1F9D55;
    --border: rgba(10, 14, 26, 0.16);
    --shadow-glow: 0 12px 40px rgba(14, 155, 181, 0.22);
    --header-bg: rgba(245, 248, 253, 0.96);
    --footer-bg: #E4EAF5;
    --inset-bg: rgba(10, 14, 26, 0.05);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Unbounded', system-ui, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 16px;
}

h1 { font-size: 30px; font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 24px; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--violet); }
img { max-width: 100%; display: block; }

@media (min-width: 1024px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.container--narrow { max-width: 800px; }

.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 72px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

.eyebrow {
    display: inline-block;
    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
}

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head__text { color: var(--muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-btn);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, filter 250ms ease-out;
    white-space: nowrap;
}
.btn--lg { min-height: 56px; padding: 0 34px; font-size: 17px; }
.btn--primary {
    background: var(--grad);
    background-size: 160% 160%;
    color: #0A0E1A;
    box-shadow: 0 6px 24px rgba(34, 211, 238, 0.28);
}
.btn--primary:hover {
    color: #0A0E1A;
    transform: translateY(-2px);
    background-position: 100% 0;
    filter: brightness(1.08);
    box-shadow: 0 10px 32px rgba(168, 85, 247, 0.38);
}
.btn--ghost {
    background: transparent;
    color: var(--fg);
    border-color: var(--border);
}
.btn--ghost:hover {
    color: var(--fg);
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.4);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fg);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.site-brand:hover { color: var(--fg); }
.site-brand__text { letter-spacing: -0.02em; }

.primary-nav__list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav__link {
    color: var(--muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 200ms ease;
}
.primary-nav__link:hover { color: var(--cyan); }
.primary-nav__actions { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.site-header__login, .site-header__register { display: none; }

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--fg);
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .primary-nav { display: flex; align-items: center; gap: 28px; }
    .primary-nav__list { display: flex; gap: 24px; }
    .site-header__register, .site-header__login { display: inline-flex; }
    .menu-toggle { display: none; }
    .primary-nav__actions { display: none; }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        display: none;
        position: fixed;
        inset: 64px 0 0 0;
        z-index: 99;
        background: var(--bg);
        padding: 32px 24px;
        overflow-y: auto;
    }
    .primary-nav.is-open { display: block; }
    .primary-nav__list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .primary-nav__link {
        display: block;
        font-family: 'Unbounded', sans-serif;
        font-size: 22px;
        padding: 14px 0;
        color: var(--fg);
        border-bottom: 1px solid var(--border);
    }
    .primary-nav__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }
    .primary-nav__actions .btn { width: 100%; }
}

/* ============================================================
   RAIN LAYER
   ============================================================ */
.rain-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
    background-image:
        linear-gradient(115deg, transparent 49%, var(--cyan) 50%, transparent 51%),
        linear-gradient(115deg, transparent 49%, var(--violet) 50%, transparent 51%);
    background-size: 3px 90px, 3px 120px;
    background-position: 0 0, 40px 0;
    animation: rainfall 2.4s linear infinite;
}
@keyframes rainfall {
    to { background-position: -40px 300px, 0 340px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
    background:
        radial-gradient(120% 80% at 80% 0%, rgba(168, 85, 247, 0.22), transparent 60%),
        radial-gradient(100% 90% at 10% 100%, rgba(34, 211, 238, 0.18), transparent 55%),
        var(--bg);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.34;
    mask-image: linear-gradient(90deg, transparent, #000 60%);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }
.hero__title { margin-bottom: 20px; }
.hero__title, .cta-banner__title {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero__lead { color: var(--fg); font-size: 18px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero__micro { color: var(--muted); font-size: 14px; margin: 0; }

@media (min-width: 1024px) {
    .hero { padding: 110px 0 130px; }
    .hero__bg img { opacity: 0.5; }
}

/* ============================================================
   STAT HIGHLIGHT
   ============================================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.stat-card__number {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 6px;
}
.stat-card__number--lime {
    background: none;
    -webkit-text-fill-color: var(--lime);
    color: var(--lime);
}
.stat-card__label { color: var(--muted); font-size: 14px; }

@media (min-width: 640px) { .stat-card__number { font-size: 44px; } }
@media (min-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .stat-card { padding: 32px 24px; }
    .stat-card__number { font-size: 48px; }
}

/* ============================================================
   GAME GRID
   ============================================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}
.game-card::before {
    content: "";
    position: absolute;
    top: -30px; right: -30px;
    width: 90px; height: 90px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
    opacity: 0.6;
}
.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(34, 211, 238, 0.4);
}
.game-card__icon {
    width: 72px; height: 72px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.game-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.game-card p { color: var(--muted); margin: 0; font-size: 15px; }

@media (min-width: 640px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .game-grid--three { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   BONUS TEASER
   ============================================================ */
.bonus-teaser {
    display: grid;
    gap: 28px;
    align-items: center;
    background: linear-gradient(150deg, var(--surface), var(--surface-2));
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}
.bonus-teaser__media { text-align: center; }
.bonus-teaser__media img { margin: 0 auto; max-width: 220px; }
.bonus-teaser__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}
.bonus-teaser__list li {
    background: var(--inset-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--fg);
}
.bonus-teaser__list strong { color: var(--cyan); }

@media (min-width: 768px) {
    .bonus-teaser { grid-template-columns: 260px 1fr; padding: 44px 40px; }
}

/* ============================================================
   COIN SHOWCASE
   ============================================================ */
.coin-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.coin-showcase li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 8px;
    text-align: center;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.coin-showcase li:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.coin-showcase img { width: 44px; height: 44px; margin: 0 auto 8px; object-fit: contain; }
.coin-showcase span {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
}
@media (min-width: 768px) { .coin-showcase { grid-template-columns: repeat(8, 1fr); } }

/* ============================================================
   COMMUNITY / TESTIMONIALS
   ============================================================ */
.community-split { display: grid; gap: 24px; }
.community-stats { display: grid; gap: 16px; }
.prize-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px;
}
.prize-card__number {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--lime);
    margin-bottom: 6px;
}
.prize-card__label { color: var(--muted); font-size: 15px; }

.testimonial-list { display: grid; gap: 16px; }
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px;
    margin: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas: "avatar quote" "avatar cap";
    gap: 4px 16px;
    align-items: start;
}
.testimonial-card__avatar {
    grid-area: avatar;
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(34, 211, 238, 0.4);
}
.testimonial-card blockquote {
    grid-area: quote;
    margin: 0;
    font-size: 15px;
    color: var(--fg);
}
.testimonial-card figcaption {
    grid-area: cap;
    color: var(--muted);
    font-size: 13px;
}

@media (min-width: 1024px) {
    .community-split { grid-template-columns: 1fr 1.2fr; gap: 32px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.faq-item[open] { border-left: 3px solid var(--cyan); }
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--fg);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-item__icon::before, .faq-item__icon::after {
    content: "";
    position: absolute;
    background: var(--cyan);
    transition: transform 300ms ease;
}
.faq-item__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-item__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item__answer { padding: 0 20px 20px; }
.faq-item__answer p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(80% 120% at 50% 0%, rgba(168, 85, 247, 0.2), transparent 60%),
        var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
}
.cta-banner__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(30% 40% at 15% 90%, rgba(34, 211, 238, 0.22), transparent 70%),
        radial-gradient(30% 40% at 85% 10%, rgba(168, 85, 247, 0.22), transparent 70%);
    pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 2; max-width: 720px; }
.cta-banner__title { margin-bottom: 14px; }
.cta-banner__text { color: var(--muted); margin-bottom: 26px; }
.cta-banner__micro { color: var(--muted); font-size: 14px; margin: 16px 0 0; }
@media (min-width: 1024px) { .cta-banner { padding: 110px 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    color: var(--muted);
    font-size: 14px;
}
.site-footer__grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}
.site-brand--footer { font-size: 18px; margin-bottom: 14px; }
.site-footer__note { color: var(--muted); font-size: 14px; line-height: 1.6; }
.site-footer__badges { display: flex; align-items: center; gap: 12px; margin: 0; }
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--violet);
    color: var(--fg);
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
}
.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: var(--lime);
    font-size: 13px;
    font-weight: 600;
}
.verify-badge__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
}
.site-footer__heading {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--fg);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__links a { color: var(--muted); }
.site-footer__links a:hover { color: var(--cyan); }
.site-footer__legal { margin: 16px 0 0; font-size: 13px; }
.coin-strip {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.coin-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: grid;
    gap: 6px;
    font-size: 13px;
}
.site-footer__bottom p { margin: 0; }
.site-footer__age { color: var(--muted); }

@media (min-width: 768px) {
    .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
    .site-footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1.4fr; }
}

/* ============================================================
   SITEMAP LIST
   ============================================================ */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.sitemap-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px 20px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.sitemap-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--grad);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}
.sitemap-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(34, 211, 238, 0.35);
}
.sitemap-item h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.sitemap-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}
@media (min-width: 1024px) {
    .sitemap-item { padding: 28px 28px 28px 36px; }
    .sitemap-item h2 { font-size: 20px; }
}

/* ============================================================
   VERIFY STEPS (provably fair flow)
   ============================================================ */
.verify-steps { display: grid; gap: 16px; margin-bottom: 40px; }
.verify-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    align-items: start;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.verify-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.verify-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--grad);
    color: #0A0E1A;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.3);
}
.verify-step__body h3 { font-size: 18px; margin-bottom: 8px; }
.verify-step__body p { margin: 0; color: var(--muted); font-size: 15px; }
@media (min-width: 768px) {
    .verify-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .verify-step__body h3 { font-size: 20px; }
}

.verify-code {
    background: var(--surface);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.verify-code__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}
.verify-code__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}
.verify-code__label {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.verify-code__block {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--cyan);
    background: var(--inset-bg);
}
.verify-code__block code { white-space: pre; }

/* ============================================================
   RTP / VOLATILITY
   ============================================================ */
.rtp-vol-grid { display: grid; gap: 20px; }
.rtp-vol-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}
.rtp-vol-card::before {
    content: "";
    position: absolute;
    top: -30px; left: -30px;
    width: 90px; height: 90px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
}
.rtp-vol-card h3 { margin-bottom: 14px; }
.rtp-vol-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.rtp-vol-card p:last-child { margin-bottom: 0; }
.rtp-vol-card strong, .rtp-vol-card a { color: var(--cyan); }
@media (min-width: 1024px) {
    .rtp-vol-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .rtp-vol-card { padding: 36px 32px; }
}

/* ============================================================
   COMPARISON TABLE (crypto methods)
   ============================================================ */
.compare-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
}
.compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}
.compare-table th {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.compare-table td {
    padding: 14px 18px;
    font-size: 15px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background 200ms ease; }
.compare-table tbody tr:hover { background: var(--inset-bg); }
.compare-table td strong { color: var(--fg); font-family: 'Unbounded', sans-serif; font-size: 14px; }
.compare-table .tag-fast { color: var(--lime); font-weight: 600; }

/* ============================================================
   SECURITY SPLIT (wallet security)
   ============================================================ */
.security-split {
    display: grid;
    gap: 28px;
    align-items: center;
    background: var(--surface);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
}
.security-split__media { text-align: center; }
.security-split__media img { margin: 0 auto; max-width: 180px; }
.security-split__body p { color: var(--muted); font-size: 15px; }
.security-split__body p:last-of-type { margin-bottom: 0; }
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .security-split { grid-template-columns: 220px 1fr; padding: 40px 36px; }
    .security-split__media img { max-width: 200px; }
}

/* ============================================================
   PROVIDER CHIPS
   ============================================================ */
.provider-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.provider-chip {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.provider-chip:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.25);
    transform: translateY(-2px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .rain-layer { animation: none; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

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