/* ============================================================================
   hopp-schwiiz.org — "Dark Sportsbook".
   Grounded, betting-appropriate dark theme: near-black + HOT RED + amber-yellow.
   Barlow Condensed (sporty condensed headings) + Barlow (body) + Space Mono
   (odds/scores/labels) + a single pixel accent (Pixelify Sans) for the wordmark.
   Sharp corners, clean 1px borders + soft depth shadows (not loud sticker
   offsets), compact scale, tight left rail. App-shell chassis kept, re-skinned.
   ========================================================================== */

:root {
  /* dark surfaces */
  --bg:      #0d0d0f;
  --bg-2:    #131317;
  --card:    #1a1a1f;
  --card-2:  #212128;
  --line:    #2c2c33;
  --line-2:  #3b3b44;
  /* ink */
  --ink:     #f2efe9;
  --ink-soft:#b4b0a8;
  --ink-mut: #7c7870;
  /* accents (black-red-yellow) */
  --red:     #e5322b;
  --red-deep:#b81e18;
  --yellow:  #ffcf2e;
  --on-red:  #ffffff;
  --on-yellow:#17130a;
  /* depth */
  --sh:      0 6px 20px rgba(0,0,0,.45);
  --sh-lg:   0 14px 34px rgba(0,0,0,.55);
  /* metrics — compact */
  --rail-w: 208px;
  --bar-h: 60px;
  --wrap: 1180px;
  --r: 2px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-sans: "Barlow", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
  --font-pixel: "Pixelify Sans", var(--font-display);
  --foreground: var(--ink);
  --muted-foreground: var(--ink-soft);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: var(--on-red); }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

h1, h2, h3, h4,
.rail-card__title, .bento__list-title, .rev-trust__title, .footer__title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.04; margin: 0;
  text-transform: uppercase; letter-spacing: .005em; }

.eyebrow { font-family: var(--font-mono); font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.eyebrow--mut { color: var(--ink-mut); }

.hairline { height: 0; border: 0; border-top: 1px solid var(--line); margin: 0; }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  letter-spacing: .03em; text-transform: uppercase; padding: .6rem 1.3rem;
  border: 1px solid transparent; border-radius: var(--r); cursor: pointer;
  transition: filter .15s, transform .1s, background .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--red); color: var(--on-red); }
.btn-gold:hover { filter: brightness(1.1); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-emerald { background: var(--yellow); color: var(--on-yellow); }
.btn-emerald:hover { filter: brightness(1.06); }
.btn-lg { padding: .8rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; }

.play { font-family: var(--font-display); font-weight: 700; font-size: .95rem; text-transform: uppercase;
  letter-spacing: .02em; color: var(--red); border-bottom: 2px solid transparent; }
.play:hover { border-bottom-color: var(--red); }

.pill { display: inline-flex; align-items: center; gap: .35rem; padding: .22rem .6rem;
  font-family: var(--font-mono); font-weight: 700; font-size: .64rem; letter-spacing: .06em;
  text-transform: uppercase; background: rgba(229,50,43,.14); color: var(--red); border: 1px solid rgba(229,50,43,.4); }
.pill--gold { background: rgba(255,207,46,.12); color: var(--yellow); border-color: rgba(255,207,46,.4); }

/* ── App-shell ───────────────────────────────────────────────────────────── */
.appbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--bar-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-inline: clamp(14px, 3vw, 28px);
  background: rgba(13,13,15,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.appbar__brand { font-family: var(--font-pixel); font-weight: 700; font-size: 1.25rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: -.01em; }
.appbar__brand span { color: var(--red); }
.appbar__nav { display: flex; align-items: center; gap: 1.3rem; }
.appbar__nav a, .appbar__nav .is-current {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink-soft); padding: .15rem 0; border-bottom: 2px solid transparent; }
.appbar__nav a:hover { color: var(--ink); }
.appbar__nav a.active, .appbar__nav .is-current { color: var(--red); border-bottom-color: var(--red); }
.appbar__cta { display: flex; align-items: center; gap: .7rem; }

/* left market rail — narrow, hugging the left edge */
.rail {
  position: fixed; left: 0; top: var(--bar-h); z-index: 40;
  width: var(--rail-w); height: calc(100vh - var(--bar-h));
  background: var(--bg-2); border-right: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 1rem 0; overflow-y: auto;
}
.rail__label { padding: 0 .8rem .5rem; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mut); }
.rail__nav { display: flex; flex-direction: column; }
.rail__item {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem;
  font-family: var(--font-display); color: var(--ink-soft); font-size: .98rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .01em; border-left: 3px solid transparent; transition: background .12s, color .12s; }
.rail__item:hover { background: var(--card); color: var(--ink); }
.rail__item.is-current, .rail__item.active { background: var(--card-2); color: var(--ink); border-left-color: var(--red); }
.rail__ico { width: 17px; height: 17px; flex: none; opacity: .85; }
.rail__foot { margin-top: auto; padding: .8rem; }
.rail__card { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--yellow); border-radius: var(--r); padding: .9rem; }
.rail__card h4, .rail-card__title { font-size: 1.1rem; color: var(--yellow); margin-bottom: .3rem; }
.rail__card p { font-family: var(--font-sans); margin: 0 0 .8rem; font-size: .78rem; color: var(--ink-soft); line-height: 1.45; }

.shell { margin-left: var(--rail-w); padding-top: var(--bar-h); min-height: 100vh; }

/* honest facts strip */
.stripe { background: #000; border-bottom: 1px solid var(--line); padding: .45rem 0; }
.stripe__row { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.stripe__row .sep { color: var(--red); }

/* ── Home hero ───────────────────────────────────────────────────────────── */
.lhero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  padding: clamp(2.6rem, 5vw, 4.2rem) 0; text-align: center; }
.lhero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  opacity: .42; filter: contrast(1.03); }
.lhero__veil { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,15,.75), rgba(13,13,15,.55) 50%, var(--bg)); }
.lhero__inner { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; padding-inline: 20px; }
.lhero .eyebrow { display: inline-block; background: var(--red); color: var(--on-red); padding: .28rem .7rem; margin-bottom: 1.1rem; }
.lhero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.01em; }
.lhero h1 span { color: var(--red); }
.lhero__sub { font-family: var(--font-sans); color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6;
  max-width: 600px; margin: 1.2rem auto 1.8rem; }
.lhero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.sec { padding: 3.2rem 0; }
.sec--layer { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.sec__head h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; margin-top: .3rem; }
.sec__link { font-family: var(--font-display); font-weight: 700; font-size: .95rem; text-transform: uppercase; color: var(--red); }
.sec__link:hover { color: var(--yellow); }

/* ── Operator cards ──────────────────────────────────────────────────────── */
.opgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.opcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .18s, transform .18s, box-shadow .18s; }
.opcard:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh); }
.opcard__media { position: relative; height: 156px; overflow: hidden; background: #000; border-bottom: 1px solid var(--line); }
.opcard__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03) saturate(.96); transition: filter .3s; }
.opcard:hover .opcard__media img { filter: contrast(1.02) saturate(1.04); }
.seal { position: absolute; top: 10px; left: 10px; width: 46px; height: 46px; z-index: 2; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--on-red); background: var(--red);
  border: 2px solid #000; box-shadow: 0 2px 8px rgba(0,0,0,.5); }
.opcard__body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.opcard__name { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: .25rem; }
.opcard__name h3 { font-size: 1.35rem; font-weight: 700; }
.opcard__name .vf { font-family: var(--font-mono); font-size: .58rem; font-weight: 700; text-transform: uppercase;
  color: var(--yellow); background: rgba(255,207,46,.1); padding: .12rem .4rem; border: 1px solid rgba(255,207,46,.35); white-space: nowrap; }
.opcard__lic { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-mut); margin: 0 0 .9rem; }
.opcard__bonus { background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--red); padding: .6rem .8rem; margin-bottom: 1rem; }
.opcard__bonus span { display: block; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mut); margin-bottom: .15rem; }
.opcard__bonus strong { color: var(--yellow); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.opcard__desc { font-family: var(--font-sans); color: var(--ink-soft); font-size: .86rem; margin: 0 0 1.2rem; flex: 1; }
.opcard__act { display: flex; gap: .5rem; }
.opcard__act .btn { flex: 1; }

/* ── Insights bento ──────────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento__lead { grid-column: span 8; position: relative; overflow: hidden; padding: 2.2rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; }
.bento__lead-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
.bento__lead > * { position: relative; z-index: 1; }
.bento__lead h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin: .5rem 0 .8rem; }
.bento__lead p { font-family: var(--font-sans); color: var(--ink-soft); max-width: 46ch; margin: 0 0 1.2rem; }
.bento__side { grid-column: span 4; display: grid; grid-template-rows: auto 1fr; gap: 18px; }
.bento__stat { background: var(--red); color: var(--on-red); border-radius: var(--r); padding: 1.3rem; }
.bento__stat .big { font-family: var(--font-display); font-weight: 800; font-size: 2rem; text-transform: uppercase; }
.bento__stat p { font-family: var(--font-sans); margin: .2rem 0 0; font-size: .82rem; opacity: .95; }
.bento__list { background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--yellow); border-radius: var(--r); padding: 1.3rem; }
.bento__list h4, .bento__list-title { font-size: 1.2rem; color: var(--yellow); margin-bottom: .7rem; }
.bento__list ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.bento__list li { display: flex; gap: .5rem; font-family: var(--font-sans); font-size: .86rem; color: var(--ink-soft); }
.bento__list li::before { content: "›"; color: var(--red); font-weight: 700; font-family: var(--font-display); }
.bento__list a:hover { color: var(--yellow); }

/* ── Home CTA ────────────────────────────────────────────────────────────── */
.hcta { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--r);
  padding: 2.4rem; text-align: center; }
.hcta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); margin-bottom: .7rem; }
.hcta h2 span, .hcta .accent { color: var(--red); }
.hcta p { font-family: var(--font-sans); color: var(--ink-soft); max-width: 54ch; margin: 0 auto 1.5rem; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; color: var(--ink-mut); padding: 1.2rem 0 0; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--line-2); }

/* ── Review page ─────────────────────────────────────────────────────────── */
.rhero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); text-align: center; }
.rhero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; opacity: .42; filter: contrast(1.03); }
.rhero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,13,15,.7), rgba(13,13,15,.5) 50%, var(--bg)); }
.rhero__inner { position: relative; z-index: 2; max-width: 740px; margin-inline: auto; padding: 2.8rem 20px 2rem; }
.rhero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; margin: .8rem 0; }
.rhero__rate { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: .4rem .9rem; }
.rhero__stars { color: var(--yellow); letter-spacing: .08em; }
.rhero__rate .lbl { font-family: var(--font-mono); color: var(--ink-soft); font-size: .74rem; text-transform: uppercase; }
.rhero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.rhero__aff { margin: 1.1rem 0 0; font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; color: var(--ink-mut); }

.rgrid { display: grid; grid-template-columns: 4fr 8fr; gap: 20px; margin-top: 2rem; align-items: start; }
.rside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--bar-h) + 14px); }
.rmain { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.card--gold { border-left: 4px solid var(--red); }
.card--shadow { box-shadow: var(--sh); }
.leather { background: var(--card); }
.card__pad { padding: 1.5rem; }

.specs h3, .specs__title { font-size: 1.3rem; color: var(--yellow); margin-bottom: 1rem; }
.specs__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.specs__row:last-child { border-bottom: 0; }
.specs__row dt { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mut); }
.specs__row dd { margin: 0; font-family: var(--font-sans); font-weight: 700; color: var(--ink); text-align: right; font-size: .86rem; }
.specs__row dd.hi { color: var(--red); }

.trust { display: flex; gap: .9rem; align-items: flex-start; padding: 1.2rem; border-left: 4px solid var(--yellow); }
.trust__ico { flex: none; width: 38px; height: 38px; display: grid; place-items: center; font-size: 1.1rem;
  background: var(--red); color: var(--on-red); border-radius: 999px; }
.trust h4, .rev-trust__title { font-size: 1.15rem; color: var(--yellow); margin-bottom: .25rem; }
.trust p { font-family: var(--font-sans); margin: 0; font-size: .8rem; color: var(--ink-soft); line-height: 1.5; }

.rev-block { padding: 1.7rem; }
.rev-block h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: .9rem; }
.rev-block p { font-family: var(--font-sans); color: var(--ink-soft); line-height: 1.7; margin: 0 0 .9rem; }
.rev-block p:last-child { margin-bottom: 0; }
.rev-eyebrow { font-family: var(--font-mono); font-weight: 700; color: var(--red); font-size: .66rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem; }
.dropcap::first-letter { font-family: var(--font-display); font-weight: 800; font-size: 3rem; float: left; line-height: .78;
  padding: .25rem .45rem 0 0; color: var(--red); }

.subscores { display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.subscore { display: grid; grid-template-columns: 1fr 2fr auto; gap: 1rem; align-items: center; }
.subscore > span:first-child { font-family: var(--font-sans); font-size: .84rem; color: var(--ink-soft); }
.subscore .bar { height: 8px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.subscore .bar > span { display: block; height: 100%; background: var(--red); }
.subscore strong { font-family: var(--font-mono); color: var(--yellow); font-weight: 700; }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pc { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); overflow: hidden; }
.pc__head { padding: .7rem 1.2rem; font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase; }
.pc--pro .pc__head { background: rgba(255,207,46,.1); color: var(--yellow); border-bottom: 1px solid var(--line); }
.pc--con .pc__head { background: rgba(229,50,43,.1); color: var(--red); border-bottom: 1px solid var(--line); }
.pc ul { list-style: none; margin: 0; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .65rem; }
.pc li { display: flex; gap: .55rem; font-family: var(--font-sans); font-size: .87rem; color: var(--ink-soft); line-height: 1.5; }
.pc--pro li::before { content: "+"; color: var(--yellow); font-weight: 700; font-family: var(--font-display); }
.pc--con li::before { content: "−"; color: var(--red); font-weight: 700; font-family: var(--font-display); }

.bonusgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1rem; }
.bonusgrid .b { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem; text-align: center; }
.bonusgrid .b span { display: block; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mut); margin-bottom: .4rem; }
.bonusgrid .b strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--yellow); text-transform: uppercase; }
.bonusgrid .b em { font-style: normal; font-family: var(--font-mono); font-size: .64rem; color: var(--ink-mut); }
.bonusnote { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-family: var(--font-sans); font-size: .8rem; color: var(--ink-mut); }

/* ── Comparison / ranked tables ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 600px; font-size: .88rem; }
table.cmp thead th { background: #000; color: var(--yellow); text-align: left;
  font-family: var(--font-mono); font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; padding: .8rem 1rem; }
table.cmp tbody td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; font-family: var(--font-sans); }
table.cmp tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp tbody tr:hover td { background: rgba(229,50,43,.07); }
.cmp .rank { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 1.2rem; }
.cmp .op { display: flex; flex-direction: column; }
.cmp .op b { color: var(--ink); font-weight: 700; }
.cmp .op span { font-family: var(--font-mono); font-size: .66rem; color: var(--ink-mut); }
.cmp .sc { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--yellow); }
.cmp .here { font-family: var(--font-mono); color: var(--ink-mut); font-size: .72rem; text-transform: uppercase; }

/* ── Guides ──────────────────────────────────────────────────────────────── */
.gcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .18s, transform .18s, box-shadow .18s; }
.gcard:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh); }
.gcard__media { height: 150px; overflow: hidden; background: #000; border-bottom: 1px solid var(--line); }
.gcard__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03) saturate(.96); transition: filter .3s; }
.gcard:hover .gcard__media img { filter: contrast(1.02) saturate(1.04); }
.gcard__body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.gcard__body h3 { font-size: 1.2rem; font-weight: 700; margin: .4rem 0 .5rem; }
.gcard__body p { font-family: var(--font-sans); color: var(--ink-soft); font-size: .86rem; margin: 0 0 1rem; flex: 1; }
.gcard__body .play { align-self: flex-start; }

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

/* article */
.article { max-width: 720px; margin-inline: auto; padding-bottom: 2.5rem; }
.article__lead { font-family: var(--font-sans); color: var(--ink-soft); font-size: 1.08rem; line-height: 1.6; margin: .8rem 0 1.8rem;
  border-left: 4px solid var(--red); padding-left: 1rem; }
.article__hero { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 0 0 2rem; }
.article__hero img { filter: contrast(1.03); }
.prose h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: .4rem; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; margin: 2.1rem 0 .8rem; color: var(--ink); }
.prose p { font-family: var(--font-sans); color: var(--ink-soft); line-height: 1.75; margin: 0 0 1rem; }

.photo-credit { font-family: var(--font-mono); font-size: .64rem; color: var(--ink-mut); padding: .5rem .2rem 0; }
.credits-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.credits-list li { font-family: var(--font-sans); font-size: .85rem; color: var(--ink-soft); padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.credits-list a { color: var(--red); font-weight: 700; }

.related h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.2rem; }

.legal { max-width: 720px; margin-inline: auto; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; margin: 2rem 0 .7rem; color: var(--ink); }
.legal p { font-family: var(--font-sans); color: var(--ink-soft); line-height: 1.7; margin: 0 0 .9rem; }

.disclaimer { display: flex; gap: .9rem; align-items: flex-start; margin-top: 2.2rem;
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: var(--r); padding: 1.1rem 1.3rem; }
.disclaimer .age { flex: none; font-family: var(--font-display); font-weight: 800; color: var(--yellow); }
.disclaimer span:last-child { font-family: var(--font-sans); font-size: .82rem; color: var(--ink-mut); line-height: 1.55; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #000; color: var(--ink); border-top: 3px solid var(--red); margin-top: 3.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 2.6rem 20px 2rem; max-width: var(--wrap); margin-inline: auto; }
.footer__brand .b { font-family: var(--font-pixel); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; color: var(--ink); }
.footer__brand .b span { color: var(--red); }
.footer__brand p { font-family: var(--font-sans); color: var(--ink-mut); font-size: .8rem; line-height: 1.55; margin: .7rem 0 0; max-width: 40ch; }
.footer__col h4, .footer__col .footer__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; color: var(--yellow); margin-bottom: .8rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer__col a, .footer__col .is-current { font-family: var(--font-sans); color: var(--ink-soft); font-size: .84rem; }
.footer__col a:hover { color: var(--red); }
.footer__col .is-current { color: var(--yellow); }
.footer__bottom { border-top: 1px solid var(--line); padding: 1.2rem 20px; display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; align-items: center; max-width: var(--wrap); margin-inline: auto; }
.footer__bottom p { font-family: var(--font-mono); margin: 0; font-size: .66rem; color: var(--ink-mut); line-height: 1.5; max-width: 80ch; }
.footer__bottom .age { display: inline-block; background: var(--red); color: var(--on-red); padding: 0 .3rem; font-weight: 700; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.nf { text-align: center; padding: 4.5rem 20px; }
.nf h1 { font-size: clamp(2.8rem, 9vw, 5.5rem); font-weight: 800; margin: .8rem 0; }
.nf h1 span { color: var(--red); }
.nf__chips { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.nf__chips a { font-family: var(--font-display); font-weight: 700; font-size: .95rem; text-transform: uppercase; padding: .4rem .9rem;
  border: 1px solid var(--line-2); border-radius: var(--r); }
.nf__chips a:hover { border-color: var(--red); color: var(--red); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .rail { transform: translateX(-100%); transition: transform .2s; }
  .shell { margin-left: 0; }
  .bento__lead { grid-column: 1 / -1; }
  .bento__side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: none; }
}
@media (max-width: 820px) {
  .appbar__nav { display: none; }
  .rgrid { grid-template-columns: 1fr; }
  .rside { position: static; }
  .opgrid, .grid-3 { grid-template-columns: 1fr; }
  .bento__side { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .bonusgrid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sec { padding: 2.4rem 0; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .lhero h1 { font-size: 2.2rem; }
}

/* Sub-heading inside a section that already owns the h1 — listings and the
   guides hub need a real h2 above their card grid so the outline runs
   h1 -> h2 -> h3 instead of jumping from the page title to the card headings. */
.section__sub { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .005em; color: var(--yellow); }
