/* ============================================================
   Sweep-Stake-Casino.ca — Main Stylesheet
   Theme: Charcoal + Teal + Maple Red
   Completely unique structure from sister sites
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
    /* Colors */
    --charcoal: #0f1923;
    --charcoal-2: #17212e;
    --charcoal-3: #1e2d3d;
    --charcoal-4: #263649;
    --teal: #00c9a7;
    --teal-dim: #009e83;
    --teal-glow: rgba(0, 201, 167, 0.15);
    --maple: #d94f3d;
    --maple-dim: #b03d2c;
    --cream: #f0ece3;
    --cream-dim: #c8c2b5;
    --white: #ffffff;
    --muted: #7a8fa6;
    --border: rgba(0, 201, 167, 0.18);
    --border-soft: rgba(255, 255, 255, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-teal: 0 0 40px rgba(0, 201, 167, 0.2);

    /* Typography */
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-head: 'Syne', system-ui, sans-serif;

    /* Layout */
    --max-w: 1180px;
    --nav-h: 68px;
    --radius: 10px;
    --radius-lg: 18px;
    --radius-pill: 100px;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--charcoal);
    color: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--teal);
    color: #000;
    font-weight: 700;
    padding: .4rem 1rem;
    border-radius: 0 0 6px 6px;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ── FOCUS VISIBLE (Accessibility) ── */
*:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── TOUCH TARGETS ≥44px (Mobile) ── */
.nav-links a,
.nav-mobile a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a,
.footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: .1rem 0;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
    min-width: 0;
    /* allow flex shrink */
    overflow: hidden;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--teal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-sub {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links a {
    color: var(--cream-dim);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem .7rem;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    background: var(--teal-glow);
}

.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--teal);
    color: #000;
    font-weight: 800;
    font-size: .78rem;
    padding: .5rem 1.1rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .07em;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    color: #000;
    transform: translateY(-1px);
    box-shadow: var(--shadow-teal);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .45rem;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: .3s;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--charcoal-2);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: .35rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--cream);
    font-weight: 600;
    font-size: .95rem;
    padding: .6rem .75rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: .2s;
}

.nav-mobile a:hover {
    color: var(--teal);
    border-color: var(--border);
}

.nav-mobile .mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #000;
    font-weight: 800;
    font-size: .9rem;
    padding: .75rem;
    border-radius: var(--radius-pill);
    margin-top: .6rem;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-sm {
    padding: 2.5rem 0;
}

.tag {
    display: inline-block;
    background: var(--teal-glow);
    color: var(--teal);
    border: 1px solid rgba(0, 201, 167, .35);
    border-radius: var(--radius-pill);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .2rem .65rem;
}

.tag-red {
    background: rgba(217, 79, 61, .12);
    color: var(--maple);
    border-color: rgba(217, 79, 61, .3);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: .22rem .7rem;
    font-size: .72rem;
    color: var(--muted);
}

.eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .6rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.section-sub {
    color: var(--muted);
    font-size: .95rem;
    margin-top: .6rem;
    max-width: 560px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--teal);
    color: #000;
    font-weight: 800;
    font-size: .88rem;
    padding: .7rem 1.5rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    font-weight: 700;
    font-size: .88rem;
    padding: .68rem 1.5rem;
    border-radius: var(--radius-pill);
    transition: background .2s, color .2s;
}

.btn-outline:hover {
    background: var(--teal-glow);
    color: #fff;
}

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Card base */
.card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color .25s, transform .25s;
}

.card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════
   HOMEPAGE HERO — Two-Column Split
══════════════════════════════════════ */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 2rem;
    background: var(--charcoal);
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--charcoal-3);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, var(--charcoal) 0%, transparent 40%);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
}

.hero-title em {
    color: var(--teal);
    font-style: normal;
}

.hero-desc {
    color: var(--cream-dim);
    font-size: .97rem;
    max-width: 440px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
}

.stat-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar {
    background: var(--charcoal-2);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
}

.trust-item .icon {
    font-size: 1rem;
    color: var(--teal);
}

/* ══════════════════════════════════════
   CASINO CARDS — Horizontal strip layout
══════════════════════════════════════ */
.casino-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-row {
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    transition: border-color .2s, background .2s;
}

.casino-row:hover {
    border-color: var(--border);
    background: var(--charcoal-3);
}

.casino-rank {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
    text-align: center;
}

.casino-info .casino-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.casino-info .casino-bonus {
    font-size: .8rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: .1rem;
}

.casino-info .casino-tags {
    display: flex;
    gap: .4rem;
    margin-top: .4rem;
    flex-wrap: wrap;
}

.casino-score {
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.casino-score .score-label {
    font-size: .65rem;
    color: var(--muted);
    font-family: var(--font);
    font-weight: 400;
}

.casino-cta .btn-primary {
    font-size: .78rem;
    padding: .5rem 1rem;
}

/* ══════════════════════════════════════
   DATA TABLE
══════════════════════════════════════ */
.data-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    background: var(--charcoal-2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: var(--charcoal-3);
    color: var(--teal);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--border-soft);
    white-space: nowrap;
}

.data-table td {
    padding: .7rem 1rem;
    font-size: .85rem;
    color: var(--cream-dim);
    border-bottom: 1px solid var(--border-soft);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--charcoal-3);
    color: var(--cream);
}

.data-table .highlight {
    color: var(--teal);
    font-weight: 700;
}

.data-table .check {
    color: #00c9a7;
}

.data-table .cross {
    color: var(--maple);
}

/* ══════════════════════════════════════
   CHART / DIAGRAM COMPONENTS
══════════════════════════════════════ */
/* Horizontal bar chart */
.hbar-chart {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}




.hbar-label {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    margin-bottom: .3rem;
    color: var(--cream-dim);
}

.hbar-label strong {
    color: #fff;
}

.hbar-track {
    height: 8px;
    background: var(--charcoal-3);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--teal-dim), var(--teal));
    transition: width 1s ease;
}

.hbar-fill.maple {
    background: linear-gradient(90deg, var(--maple-dim), var(--maple));
}

/* Donut / ring stat */
.ring-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ring-stat {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.25rem .75rem;
    text-align: center;
}

.ring-stat svg {
    width: 72px;
    height: 72px;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--charcoal-3);
    stroke-width: 8;
}

.ring-fg {
    fill: none;
    stroke: var(--teal);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s;
}

.ring-fg.maple {
    stroke: var(--maple);
}

.ring-center {
    transform: rotate(90deg);
    transform-origin: center;
}

.ring-num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    fill: #fff;
}

.ring-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-top: .5rem;
}

.ring-value {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
}

/* Vertical bar chart (SVG-based visual) */
.vbar-chart {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.vbar-chart-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.vbar-row {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    height: 110px;
}

.vbar {
    flex: 1;
    background: var(--teal-glow);
    border: 1px solid rgba(0, 201, 167, .3);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: background .2s;
}

.vbar:hover {
    background: rgba(0, 201, 167, .25);
}

.vbar span {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .65rem;
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

.vbar-labels {
    display: flex;
    gap: .5rem;
    margin-top: .4rem;
}

.vbar-labels div {
    flex: 1;
    text-align: center;
    font-size: .62rem;
    color: var(--muted);
}

/* Comparison radar-style cards */
.radar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.radar-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.radar-card .casino-name {
    font-weight: 800;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 1rem;
}

.radar-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.radar-metric-label {
    font-size: .74rem;
    color: var(--muted);
}

.radar-stars {
    color: var(--teal);
    font-size: .85rem;
}

.radar-card .verdict {
    margin-top: .75rem;
    padding: .4rem .75rem;
    background: var(--teal-glow);
    color: var(--teal);
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 700;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
    background: var(--charcoal-2);
    border-bottom: 1px solid var(--border-soft);
    padding: 3rem 0 2.5rem;
}

.page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: var(--muted);
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.page-hero-title em {
    color: var(--teal);
    font-style: normal;
}

.page-hero-desc {
    color: var(--cream-dim);
    font-size: .95rem;
    margin-top: .75rem;
    max-width: 620px;
}

.page-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SIDEBAR LAYOUT (for inner pages)
══════════════════════════════════════ */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-card h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--teal);
    margin-bottom: .85rem;
    font-weight: 700;
}

.sidebar-card ul {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.sidebar-card ul li a {
    font-size: .82rem;
    color: var(--cream-dim);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.sidebar-card ul li a:hover {
    color: var(--teal);
}

.sidebar-card ul li a::before {
    content: '›';
    color: var(--teal);
}

/* ══════════════════════════════════════
   INFO BOXES
══════════════════════════════════════ */
.info-box {
    background: var(--charcoal-3);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.info-box-red {
    border-left-color: var(--maple);
}

.info-box .info-title {
    font-weight: 700;
    color: var(--teal);
    font-size: .85rem;
    margin-bottom: .3rem;
}

.info-box-red .info-title {
    color: var(--maple);
}

.info-box p {
    font-size: .85rem;
    color: var(--cream-dim);
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: var(--cream-dim);
}

.checklist li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* Step cards */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.step-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal-glow);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
}

.step-card h4 {
    font-size: .88rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .4rem;
}

.step-card p {
    font-size: .78rem;
    color: var(--muted);
}

/* ══════════════════════════════════════
   PROVINCE GRID (for legal page)
══════════════════════════════════════ */
.province-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.province-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: .9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.province-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--cream);
}

.province-status {
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: var(--radius-pill);
}

.status-ok {
    background: rgba(0, 201, 167, .12);
    color: var(--teal);
}

.status-18 {
    background: rgba(217, 79, 61, .12);
    color: var(--maple);
}

.status-19 {
    background: rgba(232, 160, 32, .12);
    color: #e8a020;
}

/* ══════════════════════════════════════
   AUTHOR BOX
══════════════════════════════════════ */
.author-box {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.25rem;
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    align-items: start;
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--teal);
}

.author-name {
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
}

.author-role {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--teal);
    margin-bottom: .4rem;
}

.author-bio {
    font-size: .82rem;
    color: var(--cream-dim);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   BONUS CARD
══════════════════════════════════════ */
.bonus-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
}

.bonus-card:hover {
    border-color: var(--border);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
}

.bonus-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

.bonus-desc {
    font-size: .8rem;
    color: var(--muted);
    margin-top: .25rem;
}

.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .6rem;
}

.bonus-meta {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    align-items: flex-end;
}

.bonus-rating {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.bonus-rating span {
    font-size: .65rem;
    color: var(--muted);
    font-family: var(--font);
    font-weight: 400;
}

/* ══════════════════════════════════════
   APP SHOWCASE (mobile page)
══════════════════════════════════════ */
.app-hero-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.phone-mockup img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 1.5rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .88rem;
    color: var(--cream-dim);
}

.app-feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.app-feature strong {
    color: #fff;
    display: block;
    font-size: .92rem;
}

.store-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--charcoal-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: .65rem 1.1rem;
    font-size: .82rem;
    color: var(--cream);
    transition: border-color .2s;
}

.store-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ══════════════════════════════════════
   DISCLAIMER BAR
══════════════════════════════════════ */
.disclaimer-bar {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
}

.disclaimer-bar strong {
    color: var(--maple);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
    background: var(--charcoal-2);
    border-top: 1px solid var(--border-soft);
    padding: 3rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.footer-brand .brand-name {
    font-size: 1.1rem;
    margin-bottom: .6rem;
    display: block;
}

.footer-brand p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--teal);
    color: #000;
    font-weight: 800;
    font-size: .78rem;
    padding: .55rem 1.1rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: opacity .2s;
}

.footer-cta-btn:hover {
    color: #000;
    opacity: .85;
}

.footer-col h5 {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--teal);
    margin-bottom: .85rem;
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer-col ul li a {
    font-size: .82rem;
    color: var(--muted);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--cream);
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: .6rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .74rem;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--teal);
}

/* ══════════════════════════════════════
   SEO CONTENT AREA
══════════════════════════════════════ */
.seo-content h2 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 2rem 0 .75rem;
}

.seo-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin: 1.5rem 0 .5rem;
}

.seo-content p {
    font-size: .9rem;
    color: var(--cream-dim);
    margin-bottom: .85rem;
    line-height: 1.8;
}

.seo-content a {
    color: var(--teal);
    border-bottom: 1px solid rgba(0, 201, 167, .3);
}

.seo-content a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        height: 280px;
    }

    .hero-left {
        padding: 2.5rem 1.5rem;
    }

    .layout-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .app-hero-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* ── MOBILE HEADER FIX: prevent logo overflow ── */
    .nav-inner {
        gap: .5rem;
    }

    .brand {
        flex: 1 1 0;
        /* grow but also SHRINK */
        min-width: 0;
        max-width: 180px;
        /* hard cap so burger never overflows */
    }

    .brand-name {
        font-size: .82rem;
    }

    .brand-sub {
        display: none;
    }

    .btn-nav-cta {
        font-size: .68rem;
        padding: .42rem .7rem;
        white-space: nowrap;
    }

    .nav-cta-wrap {
        gap: .35rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .casino-row {
        grid-template-columns: 40px 1fr;
    }

    .casino-score,
    .casino-cta {
        display: none;
    }

    .ring-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .province-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .radar-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 2.5rem 0;
    }

    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .province-grid {
        grid-template-columns: 1fr;
    }

    .ring-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-card {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   BONUS CARDS (no-deposit page)
══════════════════════════════════════ */
.bonus-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: border-color .2s, box-shadow .2s;
}

.bonus-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-teal);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: .2rem;
}

.bonus-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
    margin-bottom: .3rem;
}

.bonus-desc {
    font-size: .78rem;
    color: var(--cream-dim);
    line-height: 1.55;
    margin-bottom: .5rem;
}

.bonus-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.bonus-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    min-width: 70px;
}

.bonus-rating {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.bonus-rating span {
    font-size: .7rem;
    color: var(--muted);
    font-family: var(--font);
}

/* ══════════════════════════════════════
   PROVINCE GRID
══════════════════════════════════════ */
.province-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: .9rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    font-size: .82rem;
    transition: border-color .2s;
}

.province-card:hover {
    border-color: var(--border);
}

.province-name {
    font-weight: 600;
    color: var(--cream);
}

.province-status {
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: var(--radius-pill);
}

.status-ok {
    background: rgba(0, 201, 167, .15);
    color: var(--teal);
}

.status-19 {
    background: rgba(217, 79, 61, .15);
    color: #ef8c7a;
}

/* ══════════════════════════════════════
   RADAR CARDS (compare page)
══════════════════════════════════════ */
.radar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.radar-card {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: border-color .2s, transform .2s;
}

.radar-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

.casino-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: .4rem;
}

.radar-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .3rem 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: .76rem;
}

.radar-metric:last-of-type {
    border-bottom: none;
}

.radar-metric-label {
    color: var(--cream-dim);
}

.radar-stars {
    color: var(--teal);
    letter-spacing: .05em;
    font-size: .72rem;
}

.verdict {
    margin-top: .75rem;
    color: var(--muted);
    font-style: italic;
}

/* ══════════════════════════════════════
   APP HERO SPLIT (mobile app page)
══════════════════════════════════════ */
.app-hero-split {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: center;
}

.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup img {
    max-height: 560px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-teal);
    border: 1px solid var(--border);
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin: 1.25rem 0;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .82rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

.app-feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

.app-feature strong {
    color: var(--cream);
    display: block;
}

.store-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.store-btn {
    background: var(--charcoal-3);
    color: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .55rem 1.1rem;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}

.store-btn:hover {
    background: var(--charcoal-4);
    border-color: var(--teal);
    color: var(--teal);
}

/* ══════════════════════════════════════
   VERTICAL BAR CHART
══════════════════════════════════════ */
.vbar-chart {
    background: var(--charcoal-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem 0;
}

.vbar-chart-title {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 1rem;
    text-align: center;
}

.vbar-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 130px;
    gap: .4rem;
}

.vbar {
    flex: 1;
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dim) 100%);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: .3rem;
    min-height: 20px;
}

.vbar span {
    font-size: .62rem;
    color: rgba(0, 0, 0, .7);
    font-weight: 700;
}

.vbar-labels {
    display: flex;
    justify-content: space-around;
    padding: .4rem 0 .75rem;
}

.vbar-labels div {
    font-size: .62rem;
    color: var(--muted);
    text-align: center;
    flex: 1;
}

/* TABLE EXTRAS */
.data-table .check {
    color: var(--teal);
    font-weight: 700;
}

.data-table .cross {
    color: #ef8c7a;
    font-weight: 700;
}

/* INFO BOX */
.info-box {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.info-title {
    font-weight: 700;
    color: var(--teal);
    font-size: .82rem;
    margin-bottom: .4rem;
}

.info-box p {
    font-size: .8rem;
    color: var(--cream-dim);
    margin: 0;
}

/* DISCLAIMER BAR */
.disclaimer-bar {
    background: rgba(217, 79, 61, .08);
    border: 1px solid rgba(217, 79, 61, .2);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .72rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

.disclaimer-bar strong {
    color: #ef8c7a;
}

/* RING CENTER TEXT */
.ring-center {
    font-size: 11px;
    font-weight: 800;
    fill: #fff;
}

/* SEO CONTENT LISTS */
.seo-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: .85rem;
}

.seo-content ul li {
    font-size: .9rem;
    color: var(--cream-dim);
    line-height: 1.75;
    margin-bottom: .3rem;
}

.seo-content ul li strong {
    color: var(--cream);
}

/* RESPONSIVE EXTRAS */
@media (max-width: 1024px) {
    .radar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-hero-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .radar-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup img {
        max-height: 320px;
    }
}