@charset "UTF-8";
/* =============================================================
   jerome-zodo.com — "Flight Board" design system
   Airport flight-information board / airline ops desk, in daylight.
   Canvas #eef1f5 · ink #10151c · white cards · sharp 2–4px radii.
   Type: IBM Plex Sans (headings/body) + IBM Plex Mono (numbers/labels).
   ============================================================= */

:root {
    /* Surfaces */
    --canvas: #eef1f5;
    --card: #ffffff;
    --tint: #f6f8fa;
    --tint-2: #eaf1f8;

    /* Ink */
    --ink: #10151c;
    --body: #3d4854;
    --muted: #5b6572;

    /* Lines */
    --line: #d3dae3;
    --line-2: #e3e8ee;
    --line-3: #c9d3de;

    /* Inverted navy (black box band + footer only) */
    --navy: #101a2b;
    --navy-2: #16223a;
    --navy-line: #2c3a52;
    --navy-text: #c3cbd8;
    --navy-muted: #8a97ab;

    /* Brand accents */
    --red: #e0293a;
    --red-d: #c8202f;
    --orange: #f57c00;
    --orange-d: #e06f00;
    --green: #28a909;
    --green-d: #1f8a06;
    --green-h: #2fc10b;
    --blue: #34b4ff;
    --purple: #913ef8;
    --pink: #c017b4;

    /* Tints */
    --amber: #fff4e6;
    --amber-ink: #e08a00;
    --green-tint: #eef8e9;

    /* Type */
    --font-head: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Layout */
    --container: 1240px;
    --gutter: clamp(18px, 3vw, 24px);
    --section-y: clamp(40px, 5vw, 64px);
    --header-h: 62px;

    /* Shape */
    --r: 4px;
    --r-2: 3px;
    --r-1: 2px;
    --tap: 44px;

    --primary-color: var(--green);
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a {
    color: var(--ink);
    text-decoration: none;
    text-decoration-color: var(--red);
    text-underline-offset: 3px;
}
a:hover { color: var(--red); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
strong, b { color: var(--ink); font-weight: 600; }
em { font-style: italic; }
hr { border: 0; border-top: 1px solid var(--line-2); margin: 24px 0; }
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: var(--r-1);
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container--narrow { max-width: 840px; }

.mono, .mono-sub {
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
body.has-sticky-bar { padding-bottom: 0; }

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    padding: 12px 20px;
    min-height: var(--tap);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { color: #fff; }
.btn-primary { background: var(--green); border-color: var(--green-d); color: #fff; }
.btn-primary:hover { background: var(--green-h); border-color: var(--green); color: #fff; }
.btn-cashout { background: var(--orange); border-color: var(--orange-d); color: #fff; }
.btn-cashout:hover { background: #ff8f1f; border-color: var(--orange); color: #fff; }
.btn-success { background: var(--green); border-color: var(--green-d); color: #fff; }
.btn-success:hover { background: var(--green-h); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 17px; }
.btn-sm { padding: 9px 16px; font-size: 13px; min-height: 40px; }
.btn-block { display: flex; width: 100%; }
span.btn { cursor: default; }
.btn-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0 0; }
.btn-wrap--left { justify-content: flex-start; }

/* =============================================================
   Header + sticky flight-status bar
   ============================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: #fff;
    border-bottom: 2px solid var(--ink);
}
.header-main { background: #fff; }
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: var(--header-h);
    padding-top: 6px;
    padding-bottom: 6px;
}
.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    min-height: var(--tap);
    flex: 0 0 auto;
    text-decoration: none;
}
.logo-glyph {
    color: var(--red);
    font-size: 17px;
    line-height: 1;
    display: inline-block;
    transform: rotate(45deg);
}
.wordmark {
    font-family: var(--font-head);
    font-weight: 600;
    font-style: italic;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--red);
}
.mono-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.nav { margin-left: auto; }
.nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav a {
    display: inline-flex;
    align-items: center;
    min-height: var(--tap);
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid transparent;
    border-radius: var(--r-1);
}
.nav a:hover { color: var(--ink); border-color: var(--line); }
.header-btn { flex: 0 0 auto; }
.menu-toggle {
    display: none;
    width: var(--tap);
    height: var(--tap);
    padding: 0;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r-1);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Flight-status bar */
.flightbar {
    background: #fff;
    border-top: 1px solid var(--line-2);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.flightbar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    min-height: 34px;
}
.fb-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
}
.fb-live b { font-family: var(--font-mono); }
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 2px rgba(40, 169, 9, .18);
    animation: avPulse 1.4s ease-in-out infinite;
    flex: 0 0 auto;
}
.fb-sep { color: var(--line); }
.fb-last {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}
.fb-flap { display: inline-flex; gap: 2px; }
.fb-flap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15px;
    height: 22px;
    padding: 0 2px;
    background: var(--ink);
    background-image: linear-gradient(transparent 49%, #3a4350 49%, #3a4350 53%, transparent 53%);
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}
.fb-rtp { color: var(--muted); }
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--r-1);
}
.flightbar .live-pill { margin-left: auto; }
.live-pill .live-dot { background: #fff; box-shadow: none; animation: none; }
@keyframes avPulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* =============================================================
   Hero — two-column ops console
   ============================================================= */
.hero {
    position: relative;
    background: var(--canvas);
    padding: clamp(28px, 4vw, 44px) 0 clamp(32px, 4vw, 48px);
}
.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}
.hero-copy .live-pill { margin-bottom: 0; }
.hero-overline {
    align-self: flex-start;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    background: #fff;
    border-radius: var(--r-1);
    padding: 5px 10px;
}
.hero-overline .ol-code { color: var(--red); }
.hero-overline .ol-meta { color: var(--muted); font-weight: 500; }
.page-title {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-wrap: balance;
    margin: 0;
}
.hero-sub {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
    max-width: 560px;
    margin: 0;
    text-wrap: pretty;
}

/* Author boarding-pass stub */
.byline {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 560px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    overflow: hidden;
    color: var(--ink);
    font-size: 14px;
    min-height: 56px;
}
.byline:hover { color: var(--ink); border-color: var(--line-3); }
.byline > * { min-width: 0; }
.byline-avatar {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    background: var(--ink);
    border: 0;
}
.byline .byline-avatar { margin: 12px; }
.byline-pass {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px 10px 0;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}
.pass-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.byline b { font-weight: 600; }
.byline-stub {
    flex: 0 0 auto;
    width: 12px;
    align-self: stretch;
    background: var(--orange);
    border-left: 2px dashed var(--line);
}
.byline-perf {
    flex: 0 0 auto;
    align-self: stretch;
    border-left: 2px dashed var(--line);
    margin: 8px 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}
.hero-buttons .btn { flex: 0 0 auto; }

/* Stat row — departure-board cells */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    border: 2px solid var(--ink);
    background: #fff;
    border-radius: var(--r-1);
    margin: 0;
}
.stat {
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
    padding: 12px 14px;
    border-right: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 0;
}
.stat b {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

/* =============================================================
   Instrument panel — game frame
   ============================================================= */
.game-frame {
    position: relative;
    width: 100%;
    min-width: 0;
    scroll-margin-top: 110px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    overflow: hidden;
}
.frame-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #fff;
    margin: 0;
}
.frame-title .wordmark { font-size: 15px; font-style: normal; letter-spacing: 0.02em; }
.frame-title-label { font-weight: 600; color: var(--ink); }
.frame-title-code { color: var(--muted); }
.frame-title .live-pill { margin-left: auto; }
.rounds-strip {
    display: flex;
    gap: 4px;
    align-items: center;
    overflow: hidden;
    padding: 8px 14px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.rounds-strip::before {
    content: "DEPARTED";
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.round-chip {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: var(--r-1);
    color: #fff;
}
.round-chip--low { background: var(--blue); color: var(--ink); }
.round-chip--med { background: var(--purple); color: #fff; }
.round-chip--high { background: var(--pink); color: #fff; }

.game-container {
    position: relative;
    aspect-ratio: 2 / 1;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--tint);
    background-image:
        linear-gradient(var(--line-2) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
    background-size: 10% 20%;
    border-bottom: 1px solid var(--line);
}
.game-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .06;
    pointer-events: none;
    z-index: 0;
}
.flight-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.flight-plane {
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(56px, 8vw, 110px);
    height: auto;
    transform-origin: 14% 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(2px 4px 6px rgba(16, 21, 28, .25));
    will-change: transform;
}
.flight-plane .prop { transform-origin: 125px 32px; animation: prop .08s linear infinite; }
@keyframes prop {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(.15); }
    100% { transform: scaleY(1); }
}
.game-live-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: #fff;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: var(--r-1);
    pointer-events: none;
}
.game-mult-wrap {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 3;
}
.game-mult {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    transition: color .15s ease;
}
.game-flying, .game-flew {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: opacity .2s ease;
}
.game-flew {
    font-weight: 600;
    color: var(--red);
    background: #fff;
    border: 2px solid var(--red);
    padding: 3px 10px;
    border-radius: var(--r-1);
    display: none;
}
.game-mult-wrap.crashed .game-mult { color: var(--red); }
.game-mult-wrap.crashed .game-flying { display: none; }
.game-mult-wrap.crashed .game-flew { display: block; }
.game-wait {
    position: absolute;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    width: min(60%, 260px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 3;
}
.game-wait.on { opacity: 1; }
.game-wait-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.game-wait-bar {
    width: 100%;
    height: 6px;
    border-radius: 2px;
    background: var(--line-2);
    overflow: hidden;
}
.game-wait-bar i {
    display: block;
    height: 100%;
    width: 100%;
    background: var(--red);
    transform-origin: left;
    transform: scaleX(0);
}
.game-wait.on .game-wait-bar i { animation: waitbar 5s linear forwards; }
@keyframes waitbar { from { transform: scaleX(1); } to { transform: scaleX(0); } }

.play-button {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    padding: 0;
    border: 2px solid var(--green-d);
    border-radius: var(--r);
    background: var(--green);
    color: #fff;
    cursor: pointer;
    z-index: 4;
    transition: background .15s ease, transform .15s ease;
}
.play-button:hover { background: var(--green-h); transform: translateX(-50%) translateY(-2px); }
.play-icon { font-size: 22px; line-height: 1; margin-left: 3px; }
.game-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Bet panels → boarding-pass stubs */
.bet-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    background: #fff;
}
.bet-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    background: #fff;
    overflow: hidden;
    min-width: 0;
}
.bet-panel > .stepper,
.bet-panel > .quick {
    grid-column: 1;
    min-width: 0;
}
.bet-panel .stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--r-1);
    margin: 10px 10px 0;
    overflow: hidden;
}
.step-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 32px;
    background: var(--tint);
    color: var(--ink);
    font-size: 16px;
    line-height: 1;
    border: 0;
}
.step-btn:first-child { border-right: 1px solid var(--line); }
.step-btn:last-child { border-left: 1px solid var(--line); }
.stake {
    flex: 1 1 auto;
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
}
.quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin: 8px 10px 10px;
}
.quick span {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--r-1);
    padding: 4px 0;
    background: #fff;
}
.bet-panel .bet-cta {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: stretch;
    border-radius: 0;
    border: 0;
    border-left: 2px dashed var(--line);
    min-height: 0;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 8px;
}
.bet-panel .bet-cta.btn-primary { border-left: 2px dashed rgba(255, 255, 255, .45); }
.bet-panel .bet-cta.btn-cashout { border-left: 2px dashed rgba(255, 255, 255, .45); }
.bet-cta { min-height: 44px; }

/* =============================================================
   Operator ribbon — white boarding-pass card
   ============================================================= */
.promo-strip {
    background: var(--canvas);
    padding: 0 0 8px;
}
.promo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    padding: 18px 22px;
}
.promo-bar-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    min-width: 0;
}
.promo-bar-logo { height: 26px; width: auto; }
.badge-rec {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 4px 10px;
    transform: rotate(-4deg);
    display: inline-block;
    background: #fff;
}
.promo-bar-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
}
.promo-bar-note { color: var(--muted); font-size: 14px; }

/* =============================================================
   Departures — TOC board
   ============================================================= */
.toc-strip { padding: 8px 0 0; }
.toc {
    display: block;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    overflow: hidden;
}
.toc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 2px solid var(--ink);
    cursor: default;
}
.toc-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: var(--ink);
}
.toc-open .toc-list { display: grid; }
.toc-open .toc-header { cursor: default; }
.toc-header::before {
    content: "DEPARTURES";
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 2px 7px;
    border-radius: var(--r-1);
}
.toc-header::after {
    content: "THIS GUIDE";
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    counter-reset: toc;
}
.toc-list li {
    counter-increment: toc;
    border-bottom: 1px solid var(--line-2);
    min-width: 0;
}
.toc-list li:nth-child(odd) { border-right: 1px solid var(--line-2); }
.toc-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: var(--ink);
    font-size: 15px;
    min-height: var(--tap);
}
.toc-list a::before {
    content: "AV" counter(toc, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--red);
    flex: 0 0 auto;
}
.toc-list a::after {
    content: "\2192";
    margin-left: auto;
    color: var(--muted);
    font-size: 14px;
    transition: transform .15s ease, color .15s ease;
}
.toc-list a:hover { background: var(--tint); color: var(--ink); }
.toc-list a:hover::after { transform: translateX(3px); color: var(--red); }

/* =============================================================
   Section pattern
   ============================================================= */
.section {
    position: relative;
    padding: var(--section-y) 0;
    scroll-margin-top: 110px;
}
.section--alt { background: var(--tint); }
.section--intro { padding-bottom: 0; }
.section--slim { padding: 0 0 var(--section-y); }
.section > .container { position: relative; }

/* Inverted navy "BLACK BOX" band — fairness / "Is it rigged?" only */
.section--blackbox {
    background: var(--navy);
    color: var(--navy-text);
}
.section.section--blackbox > .container > h2 {
    background: transparent;
    border: 0;
    border-top: 4px solid var(--red);
    border-bottom: 1px solid var(--navy-line);
    border-radius: 0;
    padding: 16px 0;
    color: #fff;
}
.section.section--blackbox > .container > h2::before { color: var(--orange); }
.section.section--blackbox .kicker { color: var(--orange); }
.section.section--blackbox p { color: var(--navy-text); }
.section.section--blackbox strong { color: #fff; }

main { counter-reset: sect; }
.section > .container > h2 {
    counter-increment: sect;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    border-top: 2px solid var(--ink);
    border-radius: 0 var(--r-1) var(--r-1) 0;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 500;
    line-height: 1.2;
    scroll-margin-top: 110px;
}
.section > .container > h2::before {
    content: "AV" counter(sect, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--red);
    flex: 0 0 auto;
}
.section h3 {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.section p { color: var(--body); font-size: 15.5px; line-height: 1.65; }
.section p strong { color: var(--ink); }
.section p em { color: var(--ink); font-style: italic; }
.section--intro p { font-size: 17px; line-height: 1.7; max-width: 900px; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.kicker-chips { display: inline-flex; gap: 5px; }
.kicker-chips i { width: 9px; height: 9px; display: inline-block; border-radius: var(--r-1); }
.t-low { background: var(--blue); }
.t-med { background: var(--purple); }
.t-high { background: var(--pink); }

.lead {
    max-width: 860px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}
.prose-2col { columns: 2; column-gap: 40px; margin-bottom: 8px; }
.prose-2col p { break-inside: avoid; }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--ink);
    border-radius: var(--r-2);
    padding: 26px;
}
.card--text { border-top-color: var(--red); }
.card--text h3 { font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.card--text p { font-size: 14.5px; }
.card--chart { border-top-color: var(--blue); }
.chart-note {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 14px;
}

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: var(--r-2);
    padding: 24px;
}
.step-num {
    display: block;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--red);
    font-size: 24px;
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon { display: none; }
.step-card h3 { font-size: 18px; }
.step-card p { font-size: 14.5px; line-height: 1.6; margin: 0; }
.section ol.steps { list-style: none; padding: 0; margin: 28px 0 0; }
.section ol.steps li {
    position: relative;
    padding: 0 0 18px 44px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.6;
}
.section ol.steps li::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
}
.section ol.steps { counter-reset: step; }

/* ---------- Tables ---------- */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    margin: 20px 0;
}
.table-wrap table { border-collapse: collapse; width: 100%; min-width: 620px; }
.spec-table, .compare-table { font-family: var(--font-body); }
.spec-table th, .spec-table td,
.compare-table th, .compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-2);
    text-align: left;
    font-size: 14.5px;
    vertical-align: top;
    color: var(--body);
}
.spec-table tr:last-child td, .spec-table tr:last-child th,
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: 0; }
.spec-table th[scope="row"] {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink);
    background: var(--tint);
    font-weight: 600;
    width: 32%;
}
.compare-table thead th,
.spec-table thead th {
    background: var(--tint);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid var(--ink);
}
.compare-table tbody tr:nth-child(even) td { background: #fafbfc; }
.compare-table td:first-child { color: var(--ink); font-weight: 600; }
.compare-table strong { color: var(--ink); }

/* ---------- Glossary / timeline / wins / verify steps ---------- */
.glossary { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; margin: 24px 0 0; border: 2px solid var(--ink); border-radius: var(--r-2); background: #fff; overflow: hidden; }
.glossary > div { padding: 16px 18px; border-bottom: 1px solid var(--line-2); border-right: 1px solid var(--line-2); }
.glossary dt {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}
.glossary dd { margin: 0; color: var(--body); font-size: 14.5px; line-height: 1.6; }

.timeline { list-style: none; margin: 24px 0 0; padding: 0 0 0 26px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 18px; color: var(--body); font-size: 15px; line-height: 1.6; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: var(--r-1);
}
.timeline li strong { color: var(--ink); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; }

.wins { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.wins li {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--green);
    border-radius: var(--r-2);
    padding: 14px 18px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.6;
}
.wins li strong { color: var(--ink); }

.verify-steps { list-style: none; counter-reset: vstep; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.verify-steps li {
    position: relative;
    padding: 14px 16px 14px 56px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    color: var(--body);
    font-size: 14.5px;
    line-height: 1.6;
}
.verify-steps .num {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    border-radius: var(--r-1);
}
.formula {
    font-family: var(--font-mono);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    color: var(--ink);
    background: var(--tint);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    border-radius: var(--r-1);
    padding: 12px 16px;
    margin-bottom: 20px;
}

/* ---------- Bars (probability chart) ---------- */
.bars { display: flex; flex-direction: column; gap: 10px; }
.bar-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 68px;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
}
.bar-label { color: var(--muted); }
.bar-track { height: 12px; background: var(--line-2); border-radius: var(--r-1); overflow: hidden; }
.bar-fill { height: 100%; border-radius: var(--r-1); }
.bar-fill--low { background: var(--blue); }
.bar-fill--med { background: var(--purple); }
.bar-fill--high { background: var(--pink); }
.bar-val { color: var(--ink); font-weight: 600; text-align: right; }

/* ---------- Strategy cards + risk pips ---------- */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.strategy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--purple);
    border-radius: var(--r-2);
    padding: 22px;
}
.strategy-card h3 { font-size: 17px; }
.strategy-card p { font-size: 14.5px; }
.risk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line-2);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.risk-label { font-weight: 600; }
.pips { display: inline-flex; gap: 4px; }
.pips i { width: 11px; height: 11px; display: inline-block; background: var(--line); border-radius: var(--r-1); }
.risk-level { margin-left: auto; color: var(--ink); font-weight: 600; }
.risk--low .pips i:nth-child(-n+1) { background: var(--blue); }
.risk--low .risk-level { color: var(--blue); }
.risk--medium .pips i:nth-child(-n+2) { background: var(--purple); }
.risk--medium .risk-level { color: var(--purple); }
.risk--high .pips i { background: var(--pink); }
.risk--high .risk-level { color: var(--pink); }

/* ---------- Warning card ---------- */
.warning-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 18px 20px;
    background: var(--amber);
    border: 1px solid #f0cfa2;
    border-left: 4px solid var(--amber-ink);
    border-radius: var(--r-2);
    color: #6b4c08;
    font-size: 14.5px;
    line-height: 1.6;
}
.warning-card strong { color: #5a3f06; }
.warning-badge {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--amber-ink);
    color: #fff;
    padding: 3px 8px;
    border-radius: var(--r-1);
}

/* ---------- App split / phone ---------- */
.app-split {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-top: 24px;
}
.phone {
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    padding: 12px;
    max-width: 260px;
}
.phone img { width: 100%; height: auto; border-radius: var(--r-1); }
.app-copy h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.app-copy .btn { margin-top: 12px; }

/* ---------- Flags (✕ / ✓ list) ---------- */
.flags { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.flags li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    padding: 14px 16px;
    color: var(--body);
    font-size: 14.5px;
    line-height: 1.6;
}
.flags li > span:last-child { flex: 1 1 auto; }
.x, .ok {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--r-1);
    color: #fff;
}
.x { background: var(--red); }
.ok { background: var(--green); }

/* ---------- Myth / fact ---------- */
.myth-fact { display: grid; gap: 12px; margin-top: 24px; }
.mf-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    overflow: hidden;
}
.mf-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    min-width: 0;
}
.mf-card--myth { background: var(--amber); border-right: 2px dashed var(--line); }
.mf-card--fact { background: var(--green-tint); }
.mf-icon {
    align-self: flex-start;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: var(--r-1);
}
.mf-card--myth .mf-icon { background: var(--red); }
.mf-card--fact .mf-icon { background: var(--green); }
.mf-tag {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: var(--r-1);
}
.mf-card--myth .mf-tag { background: var(--red); color: #fff; }
.mf-card--fact .mf-tag { background: var(--green); color: #fff; }
.mf-card > div { color: var(--body); font-size: 15px; line-height: 1.6; }

/* ---------- Operator cards ---------- */
.op-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
}
.op-filter button {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    min-height: var(--tap);
    padding: 10px 16px;
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--line);
    border-radius: var(--r-1);
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.op-filter button:hover { border-color: var(--ink); }
.op-filter button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.op-count {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 12px 0 0;
}
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.op-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--ink);
    border-radius: var(--r-2);
    padding: 20px;
    min-width: 0;
}
.op-card--featured {
    border: 2px solid var(--ink);
    border-top: 3px solid var(--red);
    box-shadow: 4px 4px 0 rgba(16, 21, 28, .08);
}
.op-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 3px 8px;
    border-radius: var(--r-1);
}
.op-name { font-family: var(--font-head); font-size: 21px; font-weight: 600; }
.op-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.op-tags span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--tint);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 3px 7px;
    border-radius: var(--r-1);
}
.op-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    gap: 10px;
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px solid var(--line-2);
    font-size: 13.5px;
    color: var(--muted);
}
.op-row strong {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}
.op-row + .op-note { border-top: 0; padding-top: 0; }
.op-note { font-size: 13.5px; color: var(--muted); margin: 0; }
.op-card .btn { margin-top: auto; }

/* ---------- Payments ---------- */
.pay-list { display: grid; gap: 12px; margin-top: 20px; }
.pay-row {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue);
    border-radius: var(--r-2);
    padding: 16px 18px;
}
.pay-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pay-region { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: 0.04em; }
.pay-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-chips span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--tint);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 3px 8px;
    border-radius: var(--r-1);
}
.pay-row p { margin-top: 10px; font-size: 14px; color: var(--body); }

/* ---------- Responsible gambling card ---------- */
.rg-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    padding: 24px;
    margin-top: 12px;
}
.age-badge {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--red);
    border-radius: var(--r-1);
}
.rg-body { min-width: 0; }
.rg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rg-list li { position: relative; padding-left: 22px; color: var(--body); font-size: 14.5px; line-height: 1.6; }
.rg-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: var(--r-1);
}
.rg-line {
    margin-top: 18px;
    padding: 14px 16px;
    background: var(--tint);
    border-left: 4px solid var(--amber-ink);
    border-radius: var(--r-1);
    font-size: 14px;
    color: var(--body);
}
.rg-line a { color: var(--red); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--line);
    border-radius: var(--r-2);
    overflow: hidden;
    transition: border-color .15s ease;
}
.faq-item.active { border-left-color: var(--red); }
.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: #fff;
    border: 0;
    font-family: var(--font-head);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    min-height: var(--tap);
}
.faq-question::after {
    content: "+";
    margin-left: auto;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--r-1);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-question:hover::after { background: var(--ink); color: #fff; }
.faq-item.active .faq-question::after { content: "\2212"; background: var(--red); border-color: var(--red); color: #fff; }
.faq-question:focus-visible { outline-offset: -2px; }
.faq-answer { padding: 0 18px 18px; border-top: 1px solid var(--line-2); padding-top: 14px; }
.faq-answer p { color: var(--body); font-size: 15px; line-height: 1.65; }

/* ---------- Shots / screenshots ---------- */
.shot {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    overflow: hidden;
}
.shot img { width: 100%; height: auto; }
.shot figcaption {
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
    border-top: 1px solid var(--line-2);
    line-height: 1.4;
}
.shot--wide { margin: 28px auto 0; max-width: 940px; }
.shot-stack { display: grid; gap: 14px; }
.shot--badge { max-width: 260px; }
.shot--small { max-width: 320px; }
.shot-row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 16px;
    margin-top: 28px;
    align-items: start;
}
.shot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.shot-grid .shot--wide { grid-column: 1 / -1; margin-top: 0; max-width: none; }
.shot-grid .shot--tall { grid-row: span 2; }

/* ---------- Interface tour + pins ---------- */
.tour {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 12px;
}
.tour-shot {
    position: relative;
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    overflow: hidden;
    background: #fff;
}
.tour-shot img { width: 100%; height: auto; display: block; }
.pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--red);
    border: 2px solid #fff;
    border-radius: var(--r-1);
}
.tour-shot .pin {
    position: absolute;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px rgba(224, 41, 58, .35);
}
.pin-1 { top: 7.5%; left: 50%; }
.pin-2 { top: 78%; left: 45%; }
.pin-3 { top: 40%; left: 12.5%; }
.pin-4 { top: 87%; left: 76%; }
.pin-5 { top: 4%; left: 96%; }
.tour-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    counter-reset: pin;
}
.tour-legend li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    padding: 12px 14px;
    color: var(--body);
    font-size: 14px;
    line-height: 1.5;
}
.tour-legend li::before {
    counter-increment: pin;
    content: counter(pin);
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--red);
    border-radius: var(--r-1);
}

/* ---------- Media + text ---------- */
.media-text {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 24px;
}
.media-text--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); }
.media-text--reverse .media-text-body { order: 2; }
.media-text .shot, .media-text .shot-stack { align-self: start; }
.media-text img { border-radius: var(--r-2); }

/* =============================================================
   Reviews
   ============================================================= */
.review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    padding: 18px 22px;
    margin: 8px 0 20px;
}
.review-avg { font-family: var(--font-mono); font-size: 34px; font-weight: 600; color: var(--ink); line-height: 1; }
.review-outof { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.review-count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-left: auto; }
.stars { display: inline-flex; gap: 2px; }
.stars i { font-style: normal; color: var(--line-3); font-size: 16px; }
.stars i.on { color: var(--orange); }

.review-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin: 0 0 24px; }
.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: var(--r-2);
    padding: 18px;
}
.review-card--reply { border-left-color: var(--green); margin-left: 20px; }
.review-card--pending { border-left-color: var(--amber-ink); opacity: .85; }
.review-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.review-avatar {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    border-radius: var(--r-1);
}
.review-card--reply .review-avatar { background: var(--green); }
.review-who { display: flex; flex-direction: column; min-width: 0; }
.review-name { font-weight: 600; color: var(--ink); font-size: 15px; }
.review-city { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.review-head .stars { margin-left: auto; }
.review-date { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.review-text { color: var(--body); font-size: 14.5px; line-height: 1.65; margin: 0; }
.review-replies { margin-top: 14px; display: grid; gap: 12px; }
.review-pending { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--amber-ink); margin: 10px 0 0; }

.review-form {
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    padding: 24px;
}
.review-form h3 { font-size: 19px; font-weight: 600; margin-bottom: 16px; }
.rf-row { margin-bottom: 14px; }
.rf-row label, .rf-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.rf-row input[type=text], .rf-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--line);
    border-radius: var(--r-1);
    font-family: var(--font-body);
    font-size: 15px;
    min-height: var(--tap);
}
.rf-row textarea { min-height: 120px; resize: vertical; }
.rf-row input:focus, .rf-row textarea:focus { outline: none; border-color: var(--ink); }
.rf-stars { display: inline-flex; flex-direction: row-reverse; gap: 4px; justify-content: flex-end; }
.rf-stars input { position: absolute; opacity: 0; width: 0; height: 0; }
.rf-stars label {
    font-size: 26px;
    line-height: 1;
    color: var(--line-3);
    cursor: pointer;
    padding: 4px;
    min-height: var(--tap);
    display: inline-flex;
    align-items: center;
}
.rf-stars input:checked ~ label, .rf-stars label:hover, .rf-stars label:hover ~ label { color: var(--orange); }
.rf-stars input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.rf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rf-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.rf-msg { font-family: var(--font-mono); font-size: 12px; color: var(--red); margin: 0; }
.rf-note { font-size: 12.5px; color: var(--muted); margin: 10px 0 0; }

/* =============================================================
   Author box (article) + author page
   ============================================================= */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid var(--ink);
    border-left: 4px solid var(--orange);
    border-radius: var(--r-2);
    padding: 22px;
}
.author-avatar {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ink);
}
.author-body { min-width: 0; }
.author-name { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--ink); }
.author-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 4px 0 10px; }
.author-body p { color: var(--body); font-size: 14.5px; line-height: 1.65; }
.author-checks { margin-top: 16px; }
.author-checks-title { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.author-checks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.author-checks li { position: relative; padding-left: 22px; color: var(--body); font-size: 14px; line-height: 1.55; }
.author-checks li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}
.author-more { margin-top: 16px; display: inline-flex; }

.crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--line-3); }
.crumbs span:last-child { color: var(--ink); }

.author-hero {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.author-photo {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ink);
    flex: 0 0 auto;
}
.author-hero h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 500; }
.author-page-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin: 8px 0 4px; }
.author-page-loc { color: var(--muted); font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag-row span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 4px 9px;
    border-radius: var(--r-1);
}
.author-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.author-bio h2 { font-size: 22px; font-weight: 600; margin: 24px 0 10px; }
.author-bio h2:first-child { margin-top: 0; }
.author-bio p { color: var(--body); font-size: 15.5px; line-height: 1.7; }
.author-side { display: grid; gap: 16px; }
.author-side .card { border-top-color: var(--green); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 24px; color: var(--body); font-size: 14px; line-height: 1.55; }
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}

/* =============================================================
   Static pages (about / terms / privacy / cookies / contacts / 404)
   ============================================================= */
.static-page .section > .container > h2 {
    counter-increment: none;
    display: block;
    border: 0;
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    padding: 0 0 8px;
    margin: 32px 0 14px;
    background: transparent;
    font-size: 22px;
    font-weight: 600;
}
.static-page .section > .container > h2::before { content: none; }
.static-h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 500; margin: 0 0 12px; }
.static-lead { font-size: 18px; color: var(--muted); max-width: 720px; margin-bottom: 24px; }
.static-page h2 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; }
.static-page p { color: var(--body); font-size: 15.5px; line-height: 1.7; }
.static-page a { color: var(--red); font-weight: 600; }
.static-page ul, .static-page ol { padding-left: 22px; }
.static-page li { color: var(--body); font-size: 15.5px; line-height: 1.7; margin-bottom: 6px; }
.static-updated { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); margin-top: 24px; }
.plain-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.plain-list li {
    position: relative;
    padding-left: 24px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.65;
}
.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: var(--r-1);
}
.contact-card {
    background: #fff;
    border: 2px solid var(--ink);
    border-left: 4px solid var(--green);
    border-radius: var(--r-2);
    padding: 22px;
    margin-bottom: 20px;
}
.contact-label { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-size: 20px; font-weight: 600; margin: 6px 0; }
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--red); }
.contact-note { color: var(--muted); font-size: 14px; margin: 0; }
.page-404 .static-h1 { color: var(--red); font-family: var(--font-mono); font-size: clamp(56px, 12vw, 120px); line-height: 1; }

/* =============================================================
   Closing CTA band
   ============================================================= */
.cta-band {
    background: var(--tint);
    border-top: 2px solid var(--ink);
    padding: var(--section-y) 0;
    text-align: center;
}
.cta-band .container { max-width: 820px; }
.cta-title { font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 12px; }
.cta-band p { color: var(--muted); font-size: 16px; margin: 0 0 24px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =============================================================
   Footer — navy boarding-pass
   ============================================================= */
.footer {
    background: var(--navy);
    color: var(--navy-text);
    margin-top: 40px;
}
.footer .container { padding-top: 44px; padding-bottom: 26px; }
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--navy-line);
    margin-bottom: 20px;
}
.footer-brand { max-width: 320px; }
.footer-brand .wordmark { font-size: 24px; color: var(--red); }
.footer-blurb { font-size: 13px; color: var(--navy-muted); margin: 10px 0 0; line-height: 1.65; }
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px 28px;
    align-content: start;
}
.footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: var(--tap);
    color: #fff;
    font-size: 14px;
}
.footer-nav a:hover { color: var(--red); }
.footer-nav a::before {
    content: "\2192";
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 12px;
    margin-right: 8px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    font-size: 12px;
    color: var(--navy-muted);
}
.footer-copyright { font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-note { font-size: 12px; line-height: 1.6; max-width: 640px; }
.footer-note a { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); }
.footer-note a:hover { color: var(--orange); }

/* =============================================================
   Sticky CTA / back to top / popup
   ============================================================= */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    align-items: center;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 2px solid var(--ink);
}
.sticky-cta .btn { flex: 1 1 auto; padding: 12px; font-size: 15px; }
.age-pill {
    flex: 0 0 auto;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--r-1);
}
.mobile-bottom-bar { display: none !important; }
.mobile-bottom-cta { display: none; }

.to-top {
    position: fixed;
    right: 16px;
    bottom: 84px;
    z-index: 61;
    width: var(--tap);
    height: var(--tap);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--r-1);
    font-size: 18px;
    cursor: pointer;
}
.to-top:hover { background: var(--ink); color: #fff; }
@media (min-width: 900px) { .to-top { bottom: 24px; right: 24px; } }

.popup-overlay {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 10000;
    width: calc(100% - 64px);
    max-width: 440px;
    padding: 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    box-shadow: 6px 6px 0 rgba(16, 21, 28, .12);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-120%);
    transition: transform .4s ease, opacity .3s ease, visibility .3s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; transform: translateX(0); }
.popup-modal { display: flex; align-items: center; gap: 14px; }
.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: var(--tap);
    height: var(--tap);
    padding: 0;
    background: var(--ink);
    color: #fff;
    border: 2px solid #fff;
    border-radius: var(--r-1);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.popup-image { width: 110px; height: 72px; object-fit: cover; border-radius: var(--r-1); flex-shrink: 0; border: 1px solid var(--line); }
.popup-info { flex: 1 1 auto; min-width: 0; }
.popup-headline { font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.3; color: var(--ink); }
.popup-subtitle { margin-top: 4px; font-size: 13px; color: var(--muted); }
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--tap);
    margin-top: 14px;
    padding: 12px 20px;
    background: var(--green);
    border: 2px solid var(--green-d);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-2);
}
.popup-cta:hover { background: var(--green-h); color: #fff; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
    .tour { grid-template-columns: 1fr; }
    .fair-grid { grid-template-columns: 1fr; }
    .hero .container { gap: 24px; }
}

.fair-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 32px; align-items: start; }

@media (max-width: 899px) {
    .header-inner { gap: 12px; }
    .menu-toggle { display: flex; order: 3; }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin: 0;
        background: #fff;
        border-bottom: 2px solid var(--ink);
        max-height: 74vh;
        overflow: auto;
    }
    .nav.active { display: block; }
    .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 4px var(--gutter) 12px; }
    .nav a { justify-content: flex-start; width: 100%; font-size: 13px; padding: 12px 8px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
    .header-btn { display: none; }
    .hero .container { grid-template-columns: minmax(0, 1fr); }
    .hero-copy, .game-frame, .bet-panels, .bet-panel { min-width: 0; max-width: 100%; }
    .bet-panel { grid-template-columns: minmax(0, 1fr) 88px; }
    .bet-panel .bet-cta { font-size: 12px; }
    .bet-panels { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .bet-panel .bet-cta { white-space: normal; }
    .author-cols { grid-template-columns: 1fr; }
    .media-text, .media-text--reverse { grid-template-columns: 1fr; }
    .media-text--reverse .media-text-body { order: 0; }
    .app-split { grid-template-columns: 1fr; }
    .phone { max-width: none; }
    .shot-row { grid-template-columns: 1fr; }
    .prose-2col { columns: 1; }
    .mf-row { grid-template-columns: 1fr; }
    .mf-card--myth { border-right: 0; border-bottom: 2px dashed var(--line); }
    .toc-list { grid-template-columns: 1fr; }
    .toc-list li:nth-child(odd) { border-right: 0; }
    .op-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .glossary { grid-template-columns: 1fr; }
    .glossary > div { border-right: 0; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 78px; }
    .to-top { bottom: 92px; }
    .popup-overlay { bottom: 104px; left: 16px; width: calc(100% - 32px); }
}

@media (min-width: 900px) {
    .faq-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .spec-table th, .spec-table td, .compare-table th, .compare-table td {
        padding: 10px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    .spec-table td, .compare-table td:last-child { white-space: normal; min-width: 200px; }
    .spec-table th[scope="row"] { width: auto; white-space: nowrap; }
    .glossary { border: 0; background: transparent; gap: 10px; }
    .glossary > div { border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--r-2); background: #fff; }
    .shot-grid { grid-template-columns: 1fr 1fr; }
    .shot-grid .shot--tall { grid-row: span 1; }
    .shot img, .media-text img { max-height: 320px; object-fit: contain; }
    .tour-shot img, .shot-grid .shot--tall img, .phone img { max-height: none; object-fit: cover; }
}

@media (max-width: 640px) {
    .hero { padding-top: 24px; }
    .page-title { font-size: clamp(30px, 9vw, 40px); }
    .hero-buttons .btn { flex: 1 1 100%; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat:nth-child(2n) { border-right: 0; }
    .bet-panels { gap: 8px; }
    .bet-panel { grid-template-columns: minmax(0, 1fr) 72px; }
    .bet-panel .bet-cta { font-size: 11px; letter-spacing: 0.02em; }
    .promo-bar .btn { width: 100%; }
    .btn-wrap .btn { flex: 1 1 100%; }
    .card, .step-card, .mf-card, .op-card, .strategy-card { padding: 18px; }
    .pay-row { padding: 14px 16px; }
    .pay-region { width: 100%; }
    .rg-card, .author-box { padding: 18px; flex-direction: column; }
    .warning-card { padding: 16px; flex-direction: column; }
    .review-form { padding: 18px; }
    .section > .container > h2 { font-size: 23px; padding: 10px 14px; }
    .bar-row { grid-template-columns: 44px minmax(0, 1fr) 58px; }
    .flight-plane { width: 44px; }
    .game-mult { font-size: 44px; }
    .play-button { width: 56px; height: 56px; min-width: 56px; min-height: 56px; }
    .byline { font-size: 13px; }
    .footer-top { flex-direction: column; }
    .shot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .game-container { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
    .flight-plane { opacity: 1; }
    .flight-plane .prop { animation: none; }
    .live-dot { animation: none; }
}

/* Touch devices: larger hit areas for inline links */
@media (hover: none) {
    a, button { min-height: 44px; }
    .op-row a, .glossary a, .static-page p a, .section p a, .footer-note a, .rg-line a { min-height: 0; }
}

/* =============================================================
   Competitor-parity blocks (2026-09-26)
   Verdict / scorecard · calculator · disclosure · pull-quote ·
   breadcrumb · last-updated · changelog · ranked table
   ============================================================= */

/* ---------- Breadcrumb + last updated ---------- */
.breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 20px;
    flex-wrap: wrap;
    padding-top: 16px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span[aria-current="page"] { color: var(--muted); }
.updated {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--muted);
}

/* ---------- Verdict / scorecard ---------- */
.verdict { display: grid; gap: 18px; }
.score-card {
    display: grid;
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 2px solid var(--ink);
    border-top: 4px solid var(--red);
    border-radius: var(--r-2);
    padding: 26px;
}
.score-big { text-align: center; }
.score-big b {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(52px, 9vw, 74px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
}
.score-big span {
    display: block;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.score-card > p { margin: 0; color: var(--body); font-size: 16px; line-height: 1.6; }
.score-metrics {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.score-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    background: var(--tint);
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: var(--r-1);
    padding: 10px 12px;
}
.sm-name {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.sm-score {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.method {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    border-radius: var(--r-2);
    padding: 24px;
}
.method > p { margin-bottom: 16px; }
.method-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; counter-reset: m; }
.method-list li { position: relative; padding-left: 36px; color: var(--body); font-size: 14.5px; line-height: 1.6; }
.method-list li::before {
    counter-increment: m;
    content: counter(m, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
}

.proscons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.pc-col {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--line-3);
    border-radius: var(--r-2);
    padding: 22px;
}
.pc-col--pros { border-top-color: var(--green); }
.pc-col--cons { border-top-color: var(--red); }
.pc-col h3 {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.pc-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pc-col li { position: relative; padding-left: 24px; color: var(--body); font-size: 14.5px; line-height: 1.55; }
.pc-mark { position: absolute; left: 0; top: 0; font-weight: 700; }
.pc-col--pros .pc-mark { color: var(--green); }
.pc-col--cons .pc-mark { color: var(--red); }

/* ---------- Bankroll & expected-loss calculator ---------- */
.calc {
    margin-top: 24px;
    background: #fff;
    border: 2px solid var(--ink);
    border-left: 4px solid var(--orange);
    border-radius: var(--r-2);
    padding: 24px;
}
.calc h3 { margin-bottom: 6px; }
.calc-note {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 0 0 18px;
}
.calc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.calc-field > span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.calc-field input {
    width: 100%;
    min-width: 0;
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    background: var(--tint);
    border: 2px solid var(--line);
    border-radius: var(--r-1);
    padding: 10px 12px;
    min-height: var(--tap);
}
.calc-field input:focus-visible { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--ink); }
.calc-out {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line-2);
    border: 2px solid var(--ink);
    border-radius: var(--r-2);
    overflow: hidden;
}
.calc-line { display: flex; flex-direction: column; gap: 6px; min-width: 0; background: var(--tint); padding: 14px 16px; }
.calc-line span {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}
.calc-line strong { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink); }
.calc-foot { margin: 14px 0 0; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- Affiliate disclosure ---------- */
.disclosure {
    margin: 0 0 22px;
    padding: 12px 16px;
    max-width: 860px;
    background: var(--tint-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: var(--r-1);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
}
.footer .disclosure {
    margin: 0 0 18px;
    max-width: 860px;
    background: var(--navy-2);
    border: 1px solid var(--navy-line);
    border-left: 3px solid var(--orange);
    color: var(--navy-muted);
}

/* ---------- Expert pull-quote ---------- */
.pullquote {
    position: relative;
    margin: 24px 0 0;
    padding: 22px 24px 20px 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    border-radius: var(--r-2);
}
.pullquote::before {
    content: "\201C";
    position: absolute;
    top: 4px;
    left: 10px;
    font-family: var(--font-head);
    font-size: 46px;
    line-height: 1;
    color: var(--line-3);
}
.pullquote p { margin: 0 0 12px; color: var(--ink); font-size: 18px; font-style: italic; line-height: 1.55; }
.pullquote cite {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.06em;
    color: var(--muted);
}
.section--blackbox .pullquote { background: var(--navy-2); border-color: var(--navy-line); border-left-color: var(--orange); }
.section--blackbox .pullquote::before { color: var(--navy-line); }
.section--blackbox .pullquote p { color: #fff; }
.section--blackbox .pullquote cite { color: var(--navy-muted); }

/* ---------- Ranked operator table ---------- */
.rank-table td:nth-child(1), .rank-table th:nth-child(1) { width: 44px; }
.rank-table td:nth-child(2) { font-family: var(--font-head); font-size: 15.5px; }
.rank-table td:last-child { text-align: right; white-space: nowrap; min-width: 0; }
.rank-table tbody tr:first-child td { background: var(--amber); }
.rank-table tbody tr:first-child td:first-child { color: var(--red); }

/* ---------- Changelog (footer) ---------- */
.changelog {
    margin: 0 0 20px;
    padding: 16px 18px;
    background: var(--navy-2);
    border: 1px solid var(--navy-line);
    border-left: 3px solid var(--orange);
    border-radius: var(--r-2);
}
.changelog-title {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}
.changelog ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.changelog li { font-size: 12.5px; line-height: 1.5; color: var(--navy-muted); }
.changelog li time { font-family: var(--font-mono); color: var(--navy-text); }

/* ---------- Responsive ---------- */
@media (max-width: 899px) {
    .score-card { grid-template-columns: minmax(0, 1fr); }
    .score-big { text-align: left; }
    .score-big b { font-size: 56px; }
    .score-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .score-card, .method, .calc { padding: 18px; }
    .proscons { grid-template-columns: minmax(0, 1fr); }
    .calc-grid { grid-template-columns: minmax(0, 1fr); }
    .calc-out { grid-template-columns: minmax(0, 1fr); }
    .pullquote p { font-size: 16.5px; }
}

/* Review comments / replies (2026-09-26) */
.review-actions { margin-top: 12px; }
.review-reply-btn {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
    background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 8px 12px;
    cursor: pointer; color: var(--ink); min-height: 36px;
}
.review-reply-btn:hover { border-color: var(--ink); }
.review-reply-form { margin-top: 12px; padding: 16px; background: var(--tint); border: 1px solid var(--line-2); border-radius: 3px; }
.review-reply-form .rf-row { margin-bottom: 10px; }
.review-reply-form label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.review-reply-form input[type="text"], .review-reply-form textarea {
    width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px; color: var(--ink);
    background: var(--card); border: 1px solid var(--line); border-radius: 3px; padding: 9px 11px;
}
.review-reply-form textarea { resize: vertical; }
.review-reply-form .rf-msg { font-size: 13px; color: var(--muted); margin-left: 10px; }
.review-replies[hidden] { display: none; }
