/* ═══════════════════════════════════════════════════════
   CHUMBA CASINO US — Design System v1.0
   Brand: Dark Navy + Rainbow Multicolor palette
   Font: Nunito (rounded, playful, matches brand tone)
   Structure: DIFFERENT from Fortune Coins intentionally
═══════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────── */
:root {
    --navy: #0D1433;
    --navy-mid: #111B42;
    --navy-card: #162050;
    --navy-light: #1C2860;
    --border: rgba(255, 255, 255, 0.08);
    --border-rb: rgba(255, 200, 50, 0.25);

    /* Rainbow accents */
    --red: #E63946;
    --yellow: #F9C811;
    --blue: #4895EF;
    --green: #2DC653;
    --orange: #FF6B35;
    --purple: #9B59B6;
    --pink: #E91E8C;
    --gold: #FFB800;

    /* Text */
    --white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dim: rgba(255, 255, 255, 0.75);

    /* Typography */
    --font-main: 'Nunito', sans-serif;
    --font-head: 'Poppins', sans-serif;

    /* Layout */
    --max-w: 1200px;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 20px rgba(249, 200, 17, 0.4);
    --glow-rb: 0 0 30px rgba(72, 149, 239, 0.3);
}

/* ── Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ── Skip Link ────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -999px;
    left: 8px;
    background: var(--yellow);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
}

.skip-link:focus {
    top: 8px;
}

/* ── Container ────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Rainbow text gradient ────────────────────────────── */
.rainbow {
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold {
    color: var(--gold);
}

.yellow-t {
    color: var(--yellow);
}

.green-t {
    color: var(--green);
}

.blue-t {
    color: var(--blue);
}

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 20, 51, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    gap: 2px;
    margin: 0 auto;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dim);
    transition: color .2s, background .2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 8px 18px;
    font-size: .82rem;
}

.btn-md {
    padding: 11px 24px;
    font-size: .9rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-rainbow {
    background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 40%, var(--green) 70%, var(--blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249, 200, 17, 0.35);
}

.btn-rainbow:hover {
    box-shadow: 0 6px 28px rgba(249, 200, 17, 0.55);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--glow-gold);
}

.btn-gold:hover {
    box-shadow: 0 6px 28px rgba(255, 184, 0, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 198, 83, 0.4);
}

/* ── HAMBURGER / MOBILE NAV ─────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    padding: 12px 20px 16px;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dim);
    transition: background .2s, color .2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.mobile-nav .btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

.mobile-cta-bar {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.mobile-cta-bar .btn {
    flex: 1;
}

/* ── RG BAR ─────────────────────────────────────────── */
.rg-bar {
    background: rgba(230, 57, 70, 0.12);
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    padding: 7px 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.rg-bar a {
    color: var(--red);
    text-decoration: underline;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 20, 51, 0.92) 0%, rgba(13, 20, 51, 0.7) 60%, rgba(13, 20, 51, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 0;
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 200, 17, 0.12);
    border: 1px solid rgba(249, 200, 17, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-dim);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hbadge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hbadge-r {
    border-color: rgba(230, 57, 70, 0.4);
    color: var(--red);
}

.hbadge-y {
    border-color: rgba(249, 200, 17, 0.4);
    color: var(--yellow);
}

.hbadge-g {
    border-color: rgba(45, 198, 83, 0.4);
    color: var(--green);
}

.hbadge-b {
    border-color: rgba(72, 149, 239, 0.4);
    color: var(--blue);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

/* SC Value Widget */
.sc-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 32, 80, 0.8);
    border: 1px solid var(--border-rb);
    border-radius: var(--radius);
    padding: 14px 20px;
}

.sc-item {
    text-align: center;
}

.sc-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.sc-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.sc-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ── SECTION BASICS ───────────────────────────────────── */
section {
    padding: 72px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--yellow);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
}

.text-center {
    text-align: center;
}

.section-head {
    margin-bottom: 48px;
}

.bg-mid {
    background: var(--navy-mid);
}

.bg-card {
    background: var(--navy-card);
}

/* ── CARDS ────────────────────────────────────────────── */
.card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .2s, transform .2s;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

/* ── RAINBOW STAT CARDS (unique) ────────────────────── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
}

.stat-strip-item {
    background: var(--navy-card);
    padding: 24px 20px;
    text-align: center;
}

.stat-strip-item:nth-child(1) .stat-num {
    color: var(--red);
}

.stat-strip-item:nth-child(2) .stat-num {
    color: var(--yellow);
}

.stat-strip-item:nth-child(3) .stat-num {
    color: var(--green);
}

.stat-strip-item:nth-child(4) .stat-num {
    color: var(--blue);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* ── COIN DISPLAY (unique — different from Fortune Coins) */
.coin-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto 32px;
}

.coin-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coin-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.15));
}

.coin-card.gc {
    background: linear-gradient(135deg, #1A2B0A, #1F3A10);
    border: 1px solid rgba(249, 200, 17, 0.3);
}

.coin-card.sc {
    background: linear-gradient(135deg, #0A1530, #0E2050);
    border: 1px solid rgba(72, 149, 239, 0.3);
}

.coin-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.coin-amount {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
}

.coin-card.gc .coin-amount {
    color: var(--yellow);
}

.coin-card.sc .coin-amount {
    color: var(--blue);
}

.coin-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.coin-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── HORIZONTAL STEPS (different from Fortune Coins vertical) */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
    z-index: 0;
}

.how-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 auto 20px;
    border: 3px solid;
}

.how-step:nth-child(1) .step-dot {
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--red);
    color: var(--red);
}

.how-step:nth-child(2) .step-dot {
    background: rgba(249, 200, 17, 0.15);
    border-color: var(--yellow);
    color: var(--yellow);
}

.how-step:nth-child(3) .step-dot {
    background: rgba(45, 198, 83, 0.15);
    border-color: var(--green);
    color: var(--green);
}

.how-step:nth-child(4) .step-dot {
    background: rgba(72, 149, 239, 0.15);
    border-color: var(--blue);
    color: var(--blue);
}

.step-title {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── GRIDS ───────────────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ── GAME CARDS ───────────────────────────────────────── */
.game-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-card);
    border: 1px solid var(--border);
    transition: transform .2s, border-color .2s;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 200, 17, 0.3);
}

.game-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-info-bar {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-name {
    font-weight: 800;
    font-size: 0.9rem;
}

.game-rtp {
    font-size: 0.76rem;
    color: var(--green);
    font-weight: 700;
}

.game-provider {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.game-chip {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.chip-hot {
    background: rgba(230, 57, 70, 0.2);
    color: var(--red);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.chip-new {
    background: rgba(45, 198, 83, 0.2);
    color: var(--green);
    border: 1px solid rgba(45, 198, 83, 0.3);
}

.chip-top {
    background: rgba(249, 200, 17, 0.2);
    color: var(--yellow);
    border: 1px solid rgba(249, 200, 17, 0.3);
}

/* ── FEATURE ROW (alternating) ─────────────────────── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.reverse .feature-img {
    order: 2;
}

.feature-row.reverse .feature-copy {
    order: 1;
}

.feature-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.icon-red {
    background: rgba(230, 57, 70, 0.15);
}

.icon-yellow {
    background: rgba(249, 200, 17, 0.15);
}

.icon-green {
    background: rgba(45, 198, 83, 0.15);
}

.icon-blue {
    background: rgba(72, 149, 239, 0.15);
}

.feature-copy h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-copy p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ── TABLES ───────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

caption {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: left;
    padding: 12px 16px 8px;
    caption-side: top;
}

thead tr {
    background: var(--navy-light);
}

th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    white-space: nowrap;
}

td {
    padding: 13px 16px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.td-yes {
    color: var(--green);
    font-weight: 800;
}

.td-no {
    color: var(--red);
}

.td-gold {
    color: var(--gold);
    font-weight: 800;
}

.td-hl {
    color: var(--white);
    font-weight: 800;
}

/* ── CHARTS ──────────────────────────────────────────── */
.chart-box {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.chart-box h3 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dim);
}

/* ── RATING PANEL ─────────────────────────────────────── */
.rating-panel {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.score-big {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-total {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.stars-row {
    display: flex;
    gap: 4px;
    margin: 8px 0 24px;
}

.star {
    color: var(--yellow);
    font-size: 1.2rem;
}

.star.half {
    color: var(--text-muted);
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rb-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    min-width: 130px;
}

.rb-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.rb-val {
    font-size: 0.82rem;
    font-weight: 800;
    min-width: 30px;
    text-align: right;
    color: var(--yellow);
}

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #0E1940 0%, #1A0B3E 50%, #0E1940 100%);
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
    padding: 64px 0;
    text-align: center;
}

.cta-band .section-title {
    margin-bottom: 12px;
}

.cta-band p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--yellow);
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    display: none;
    padding: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.faq-body.open {
    display: block;
}

/* ── SEO CONTENT ─────────────────────────────────────── */
.seo-content {
    padding: 64px 0;
}

.seo-article {
    max-width: 860px;
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--white);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--text-dim);
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-article strong {
    color: var(--white);
}

.text-link {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--orange);
}

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--yellow);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ── PAGE HERO (inner pages — different from homepage) ── */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 520px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
    background: #090F29;
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 800;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color .15s;
}

.footer-links a:hover {
    color: var(--white);
}

/* ── PROS/CONS (unique grid layout) ────────────────── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-card,
.cons-card {
    border-radius: var(--radius);
    padding: 24px;
}

.pros-card {
    background: rgba(45, 198, 83, 0.07);
    border: 1px solid rgba(45, 198, 83, 0.2);
}

.cons-card {
    background: rgba(230, 57, 70, 0.07);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.pros-card h3 {
    color: var(--green);
    margin-bottom: 16px;
}

.cons-card h3 {
    color: var(--red);
    margin-bottom: 16px;
}

.pros-list li,
.cons-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--text-dim);
    align-items: flex-start;
}

.pros-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-list li::before {
    content: '✗';
    color: var(--red);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── PROMO CARDS (bonuses page unique) ──────────────── */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    border-radius: var(--radius);
    padding: 28px;
    border-top: 4px solid;
    background: var(--navy-card);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promo-card:nth-child(1) {
    border-color: var(--yellow);
}

.promo-card:nth-child(2) {
    border-color: var(--green);
}

.promo-card:nth-child(3) {
    border-color: var(--blue);
}

.promo-card:nth-child(4) {
    border-color: var(--orange);
}

.promo-card:nth-child(5) {
    border-color: var(--purple);
}

.promo-card:nth-child(6) {
    border-color: var(--red);
}

.promo-amount {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 6px;
}

.promo-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.promo-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── AUTHOR CARD ─────────────────────────────────────── */
.author-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
    font-size: 0.82rem;
    margin-top: 28px;
}

.author-chip img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-chip strong {
    color: var(--white);
}

.author-chip span {
    color: var(--text-muted);
}

/* ── MOBILE APP SPECS ─────────────────────────────────── */
.app-store-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.app-card {
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--navy-card);
    text-align: center;
}

.app-card .app-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.app-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.app-card .app-rating {
    font-size: 0.9rem;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 12px;
}

.app-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .how-steps::before {
        display: none;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row.reverse .feature-img {
        order: 0;
    }

    .feature-row.reverse .feature-copy {
        order: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 48px 0;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .coin-showcase {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .app-store-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sc-widget {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 380px;
    }

    .hero-content {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .mobile-cta-bar {
        flex-direction: column;
    }
}

/* ── JS Interactivity ────────────────────────────────── */
/* Hamburger JS class toggling handled by inline script */
/* Screen-reader only utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
