:root {
  --bg: #060815;
  --panel: rgba(19, 24, 48, 0.72);
  --panel-strong: rgba(22, 29, 58, 0.9);
  --line: rgba(255, 255, 255, 0.14);
  --text: #eaf0ff;
  --muted: #a9b5d8;
  --accent: #7cf6ff;
  --accent-2: #9d7bff;
  --ok: #8bf5a5;
  --warn: #ffd26e;
  --danger: #ff7b94;
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 40px rgba(2, 5, 17, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #080c1f 0%, #0c1128 55%, #070a1a 100%);
  min-height: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell-wrap {
  width: min(1220px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.flux-header {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(140deg, rgba(13, 17, 35, 0.85), rgba(24, 30, 58, 0.65));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-wave {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-wave img {
  width: 42px;
  height: 42px;
}

.brand-wave span {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.menu-stream {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-stream a {
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 240ms ease;
}

.menu-stream a:hover,
.menu-stream a.current {
  color: var(--text);
  border-color: rgba(124, 246, 255, 0.45);
  background: rgba(124, 246, 255, 0.1);
  transform: translateY(-1px);
}

.hero-lattice {
  margin-top: 1rem;
  padding: 2.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(15, 18, 38, 0.92), rgba(33, 21, 66, 0.78));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-lattice::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 246, 255, 0.18), transparent 70%);
  top: -80px;
  left: -60px;
  pointer-events: none;
}

.hero-lattice::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 123, 255, 0.15), transparent 70%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.hero-kicker {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.9rem, 3.7vw, 3.5rem);
  line-height: 1.15;
}

.hero-sub {
  max-width: 760px;
  color: var(--muted);
  margin-top: 0.85rem;
  margin-bottom: 1.4rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(139, 245, 165, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: #c5ffd2;
  background: rgba(139, 245, 165, 0.1);
  font-size: 0.9rem;
}

.zone {
  margin-top: 1rem;
}

.zone-head {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.zone-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.zone-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.casino-lane {
  display: grid;
  gap: 0.75rem;
}

.casino-strip {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.casino-logo-box {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
}

.casino-logo-box img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.casino-details h3 {
  margin: 0 0 0.3rem;
  font-size: 1.07rem;
}

.casino-details p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.chip-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  font-size: 0.78rem;
  color: #ccdaff;
}

.go-panel {
  text-align: right;
}

.score {
  font-weight: 700;
  color: var(--ok);
  margin-bottom: 0.5rem;
}

.cta {
  display: inline-block;
  border: 1px solid rgba(124, 246, 255, 0.5);
  border-radius: 999px;
  padding: 0.53rem 1rem;
  font-weight: 600;
  background: rgba(124, 246, 255, 0.12);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.insight-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 1rem;
}

.insight-cell h3 {
  margin: 0 0 0.45rem;
}

.insight-cell p,
.insight-cell li {
  color: var(--muted);
}

.insight-cell ul {
  margin: 0;
  padding-left: 1.2rem;
}

.faq-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.faq-node {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel);
}

.faq-node summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-node summary::-webkit-details-marker {
  display: none;
}

.faq-node p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: var(--muted);
}

.faq-node summary::after {
  content: "+";
  color: var(--accent);
}

.faq-node[open] summary::after {
  content: "-";
}

.odd-footer {
  margin: 1.1rem 0 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0b0f26;
  padding: 1.2rem;
}

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

.footer-mini-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-mini-nav a {
  font-size: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.65rem;
  color: var(--muted);
}

.reg-strip {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.reg-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.reg-card a {
  display: block;
}

.reg-logo-box {
  background: #f8fbff;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  padding: 0.45rem;
}

.reg-logo-box img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.reg-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-row {
  margin-top: 1rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.legal-tile {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  font-size: 0.87rem;
  color: #d6e0fc;
}

.legal-tile strong {
  color: var(--warn);
}

.mono-page {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 1.3rem;
}

.mono-page h1,
.mono-page h2 {
  margin-top: 0;
}

.mono-page p,
.mono-page li {
  color: var(--muted);
}

.overlay-shell {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 18, 0.94);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.overlay-shell.show {
  display: flex;
}

.gate-panel {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0a0e24;
  padding: 1rem;
}

.gate-panel h2 {
  margin: 0 0 0.4rem;
}

.gate-panel p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 0.5rem;
}

label {
  font-size: 0.87rem;
  color: #dce5ff;
}

input[type="date"] {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.5rem;
}

.gate-actions {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

button {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
}

.btn-solid {
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #030817;
}

.btn-faint {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.text-alert {
  margin-top: 0.45rem;
  min-height: 18px;
  color: var(--danger);
  font-size: 0.84rem;
}

.age-legal-copy {
  margin-top: 0.6rem;
  border: 1px dashed rgba(255, 210, 110, 0.45);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #f2e0a8;
  background: rgba(255, 210, 110, 0.08);
}

.responsible-ribbon {
  margin: 0.85rem 0 0;
  border: 1px solid rgba(255, 210, 110, 0.42);
  border-radius: 999px;
  padding: 0.44rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #ffe7a7;
  background: rgba(255, 210, 110, 0.1);
}

.responsible-ribbon.strong {
  border-style: dashed;
  color: #ffd26e;
}

.inline-responsible {
  margin-top: 0.55rem;
  font-size: 0.79rem;
  color: rgba(255, 229, 158, 0.9);
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

/* ─── Sticky header anchor ───────────────────────────────────── */
.header-anchor {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.9rem 0 0.5rem;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
}
.header-anchor .shell-wrap,
.header-anchor .flux-header {
  pointer-events: all;
}

/* ─── Cookie consent bar ─────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(720px, calc(100% - 2rem));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0e1530;
  padding: 1rem 1.2rem;
  z-index: 60;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.cookie-bar.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 280px;
}
.cookie-inner p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.btn-sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.85rem;
}

/* ─── Hero enhancements ──────────────────────────────────────── */
.hero-lattice {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.highlight-glow {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(124, 246, 255, 0.45);
}
.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  align-self: center;
}

/* ─── Casino strip enhancements ──────────────────────────────── */
.casino-strip {
  text-decoration: none;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 0.9rem 1rem;
  transition: all 240ms ease;
  cursor: pointer;
}
.casino-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}
.casino-meta-row h3 {
  margin: 0;
}
.cat-pill {
  display: inline-block;
  border: 1px solid rgba(157, 123, 255, 0.4);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.74rem;
  color: #c5b8ff;
  background: rgba(157, 123, 255, 0.1);
  white-space: nowrap;
}
.score-display {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}
.score-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ok);
  line-height: 1;
}
.score-max {
  font-size: 0.9rem;
  color: var(--muted);
}
.stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 0.6rem;
}
.star-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.star-on  { fill: var(--warn); }
.star-off { fill: rgba(255, 255, 255, 0.18); }
.t18 {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: rgba(169, 181, 216, 0.55);
  line-height: 1.3;
}
.shuffle-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: rgba(169, 181, 216, 0.5);
}
.shuffle-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── Section header bar ─────────────────────────────────────── */
.section-head-bar {
  margin-bottom: 1.2rem;
}
.section-head-bar h2 {
  margin: 0 0 0.4rem;
}
.section-head-bar p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

/* ─── How We Rate grid ───────────────────────────────────────── */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.rate-cell {
  display: flex;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 1rem;
  align-items: flex-start;
}
.rate-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 246, 255, 0.1);
  border: 1px solid rgba(124, 246, 255, 0.25);
}
.rate-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rate-icon.purple {
  background: rgba(157, 123, 255, 0.1);
  border-color: rgba(157, 123, 255, 0.25);
}
.rate-icon.purple svg { stroke: var(--accent-2); }
.rate-icon.green {
  background: rgba(139, 245, 165, 0.1);
  border-color: rgba(139, 245, 165, 0.25);
}
.rate-icon.green svg { stroke: var(--ok); }
.rate-icon.amber {
  background: rgba(255, 210, 110, 0.1);
  border-color: rgba(255, 210, 110, 0.25);
}
.rate-icon.amber svg { stroke: var(--warn); }
.rate-body {
  flex: 1;
  min-width: 0;
}
.rate-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.rate-body p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}
.rate-bar {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 0.3rem;
}
.rate-fill {
  height: 100%;
  width: var(--w, 70%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
}
.rate-pct {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ─── UK Safety section ──────────────────────────────────────── */
.safety-wrap {
  border: 1px solid rgba(139, 245, 165, 0.2);
  border-radius: 20px;
  background: rgba(8, 18, 14, 0.7);
  padding: 1.2rem;
}
.safety-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.safety-header svg {
  width: 22px;
  height: 22px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.safety-header h2 {
  margin: 0;
  font-size: 1.2rem;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.safety-cell {
  border: 1px solid rgba(139, 245, 165, 0.18);
  border-radius: var(--radius-md);
  background: rgba(139, 245, 165, 0.04);
  padding: 0.9rem;
}
.safety-cell strong {
  display: block;
  color: #c5ffd2;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.safety-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

/* ─── Age gate enhancements ──────────────────────────────────── */
.gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--warn);
  color: var(--warn);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ─── Footer base row ────────────────────────────────────────── */
.footer-base {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer-base p {
  margin: 0;
  color: rgba(169, 181, 216, 0.45);
  font-size: 0.8rem;
}
.footer-brand-col p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.4rem 0 0.8rem;
  line-height: 1.5;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--warn);
  color: var(--warn);
  font-weight: 700;
  font-size: 0.78rem;
  margin-right: 0.4rem;
}
.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

/* ─── Responsive additions ───────────────────────────────────── */
@media (max-width: 980px) {
  .casino-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .go-panel {
    text-align: left;
  }
  .insight-grid,
  .faq-matrix,
  .legal-row,
  .footer-top,
  .reg-strip,
  .rate-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-row {
    gap: 1.2rem;
  }
  .stat-divider {
    display: none;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-lattice {
    min-height: 60vh;
  }
}

/* ===== Archetype v2: orbital layout ===== */
.site-shell {
  width: min(1440px, calc(100% - 1.4rem));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
}

.orbit-rail {
  position: sticky;
  top: 1rem;
  height: calc(100vh - 2rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0c1128;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rail-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.45rem;
  border: 1px solid rgba(124, 246, 255, 0.2);
  border-radius: 14px;
  background: rgba(124, 246, 255, 0.05);
}

.rail-brand strong {
  display: block;
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
}

.rail-brand span {
  font-size: 0.72rem;
  color: var(--muted);
}

.rail-nav {
  display: grid;
  gap: 0.35rem;
}

.rail-nav a {
  border: 1px solid transparent;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  transition: all 220ms ease;
}

.rail-nav a:hover,
.rail-nav a.current {
  color: var(--text);
  border-color: rgba(124, 246, 255, 0.35);
  background: rgba(124, 246, 255, 0.09);
}

.rail-footnote {
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
}

.rail-footnote span {
  font-size: 0.74rem;
  color: rgba(169, 181, 216, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.arena {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.deck-hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #0d1230 0%, #160e2e 100%);
  overflow: hidden;
  position: relative;
}

.deck-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  padding: 1.4rem;
}

.deck-title {
  margin: 0.1rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
  max-width: 16ch;
}

.deck-sub {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.deck-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.deck-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(124, 246, 255, 0.45);
  background: rgba(124, 246, 255, 0.14);
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.deck-link-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.deck-right {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.stat-capsule,
.wave-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
  background: rgba(8, 12, 28, 0.9);
}

.stat-capsule > p {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  font-size: 0.72rem;
}

.capsule-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.capsule-row strong {
  font-size: 1.55rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
}

.capsule-row span {
  font-size: 0.82rem;
  color: var(--muted);
}

.wave-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.wave-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.9rem;
}


.zone-track {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(10, 14, 32, 0.8);
}


.lane-bent .casino-strip:hover {
  transform: translateX(0) translateY(-2px);
}

.trust-map {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.trust-node {
  border: 1px solid rgba(124, 246, 255, 0.2);
  border-radius: 16px;
  background: rgba(124, 246, 255, 0.06);
  padding: 0.9rem;
}

.trust-node h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.trust-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.88rem;
}

.faq-column {
  grid-template-columns: 1fr;
}

.orbital-footer {
  margin-top: 1.2rem;
  border-radius: 34px 34px 0 0;
}

@media (max-width: 1140px) {
  .site-shell {
    grid-template-columns: 1fr;
  }

  .orbit-rail {
    position: relative;
    top: auto;
    height: auto;
    display: grid;
    gap: 0.75rem;
  }

  .rail-nav {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .rail-footnote {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .trust-map {
    grid-template-columns: 1fr;
  }

  .lane-bent .casino-strip:nth-child(odd),
  .lane-bent .casino-strip:nth-child(even) {
    transform: none;
  }
}
