:root {
  --deep: #150a26;
  --panel: #21103c;
  --panel-2: #2c1650;
  --panel-3: #391d66;
  --rule: #452a70;
  --rule-lit: #7a45c4;
  --ink: #f5f2fb;
  --ink-soft: #b6a9d4;
  --spark: #9cfc9c;
  --glow: #90e4fc;
  --haze: #b4b4fc;
  --flare: #a812b4;
  --cta-ink: #1d0838;
  --yes: #67e6a4;
  --no: #f08a9c;
  --curve: 10px;
  --column: 1080px;
  --edge: 40px;
  --type: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --type-display: "Trebuchet MS", "Segoe UI Semibold", Verdana, Geneva, sans-serif;
  --keyline: linear-gradient(100deg, var(--spark) 0%, var(--glow) 52%, var(--haze) 100%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  font: 16px/1.6 var(--type);
  color: var(--ink);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0 0 18px;
  font-family: var(--type-display);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  overflow-wrap: break-word;
}

h1 { font-size: 44px; letter-spacing: -.4px; }
h2 { font-size: 29px; }
h3 { font-size: 21px; }
p { margin: 0 0 18px; overflow-wrap: break-word; }
ul, ol { margin: 0 0 18px; padding-left: 24px; }
li { margin-bottom: 8px; }
strong { font-weight: 700; }

a:focus-visible,
label:focus-visible,
input:focus-visible,
[role="link"]:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
}

.hop { cursor: pointer; -webkit-user-select: none; user-select: none; }

.shell { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

.column {
  max-width: calc(var(--column) + var(--edge) * 2);
  margin-inline: auto;
  padding-inline: var(--edge);
  padding-block: 0 48px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--panel);
  border-bottom: 1px solid var(--rule);
}

.topbar__row {
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--edge);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.mark img { height: 44px; width: auto; }
.topbar .mark { margin-right: auto; }

.routes__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.routes__list li { margin: 0; }

.routes__list .hop {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 7px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.routes__list .hop svg { fill: var(--haze); flex: none; }
.routes__list .hop:hover { background: var(--panel-3); border-color: var(--rule-lit); }
.routes__pair { display: none; }
.topbar__pair { display: flex; gap: 10px; margin-left: auto; }

.enter-key, .signup-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 19px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}

.enter-key {
  background: var(--panel-2);
  color: var(--haze);
  border: 1px solid var(--rule-lit);
}

.enter-key:hover { background: var(--panel-3); }

.signup-key {
  background: var(--keyline);
  color: var(--cta-ink);
  border: 1px solid transparent;
}

.drawer-switch { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }

.stack-icon {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 7px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
}

.stack-icon span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

@keyframes hall-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(156, 252, 156, 0); }
  50% { transform: scale(1.035); box-shadow: 0 0 26px rgba(156, 252, 156, .42); }
}

.deal-key--pulse, .signup-key {
  animation: hall-breathe 2.8s ease-in-out infinite;
  will-change: transform;
}

.deal-key--pulse:hover, .signup-key:hover { animation-play-state: paused; }

.deal-key {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 360px;
  width: 100%;
  min-height: 60px;
  margin: 10px auto 0;
  padding: 12px 26px;
  border-radius: var(--curve);
  background: var(--keyline);
  color: var(--cta-ink);
  font-size: 18px;
  font-weight: 700;
}

.deal-key:active { transform: scale(.98); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .deal-key--pulse, .signup-key { animation: none; }
  *, *::before, *::after { transition: none !important; }
}

.opening { padding-block: 34px 44px; text-align: center; }
.opening__head { margin-bottom: 22px; }

.opening__lede {
  max-width: 100%;
  min-width: 0;
  margin: 0 auto 24px;
  text-align: left;
  font-size: 17px;
}

.opening__lede p:last-child { margin-bottom: 0; }

.opening__poster {
  display: block;
  margin: 0 auto 26px;
  border-radius: var(--curve);
  overflow: hidden;
  border: 1px solid var(--rule);
}

.opening__poster img { width: 100%; height: auto; }

.plate { margin: 0 0 44px; }
.plate__art .hop { display: block; }

.plate__art img {
  width: 100%;
  border-radius: var(--curve);
  border: 1px solid var(--rule);
}

.panel, .shelf, .voices, .answers, .winline, .factsheet {
  margin: 0 0 34px;
  padding: 30px 32px;
  border-radius: var(--curve);
  background: var(--panel);
  border: 1px solid var(--rule);
}

.shelf, .voices, .answers, .winline {
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}

.panel > *:last-child, .prose > *:last-child { margin-bottom: 0; }
.panel h2 { margin-top: 0; }
.panel__head { text-align: center; }
.prose { min-width: 0; }
.prose p, .prose li { font-size: 17px; }
.prose h3 { margin-top: 30px; }
.prose h3:first-of-type { margin-top: 22px; }

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 26px; }
.tablewrap:last-child { margin-bottom: 0; }

table {
  width: 100%;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  border-radius: var(--curve);
  overflow: hidden;
}

th, td {
  padding: 13px 15px;
  border: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

th { background: var(--panel-3); font-weight: 700; font-family: var(--type-display); }
td { background: var(--panel-2); }
tbody tr:nth-child(even) td { background: #26123f; }
td:first-child { font-weight: 700; }

.factsheet__band {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin: 0 0 24px;
  padding: 12px 20px;
  border-radius: var(--curve);
  background: var(--keyline);
  text-align: center;
  font-size: 24px;
  color: var(--cta-ink);
}

.factsheet td:first-child { width: 30%; }

.winline__list { list-style: none; margin: 0; padding: 0; }

.winline__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  transition: background .4s, border-color .4s;
}

.winline__row:last-child { margin-bottom: 0; }
.winline__row--fresh { background: var(--panel-3); border-color: var(--rule-lit); }
.winline__game { font-weight: 700; font-size: 15px; min-width: 0; overflow-wrap: break-word; }
.winline__game small { display: block; font-weight: 400; font-size: 12px; color: var(--ink-soft); }
.winline__sum { font-family: var(--type-display); font-weight: 700; font-size: 17px; color: var(--spark); }
.winline__when { font-size: 12px; color: var(--ink-soft); white-space: nowrap; }

.shelf h2 { text-align: center; }

.shelf__switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.shelf__switch li { margin: 0; }

.shelf__key {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.shelf__key svg { fill: currentColor; flex: none; }
.shelf__key:hover, .shelf__key.lit { background: var(--panel-3); border-color: var(--rule-lit); }
.shelf__body { min-width: 0; }
.deck { display: none; }
.deck.lit { display: block; }

.shelf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
}

.shelf__grid > * { min-width: 0; }
.card { display: block; color: var(--ink); }

.card__art {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  aspect-ratio: 360 / 472;
}

.card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s; }
.card:hover .card__art img { transform: scale(1.045); }
.card:hover .card__art { border-color: var(--rule-lit); }

.card__name {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.card small { display: block; font-size: 12px; color: var(--ink-soft); }

.card--emblem .card__art {
  aspect-ratio: 5 / 3;
  background: var(--panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.card--emblem .card__art img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.card--emblem .card__name { text-align: center; font-size: 14px; }
.card--emblem:hover .card__art img { transform: none; }

.verdict__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict__pair > * { min-width: 0; }

.verdict__card {
  padding: 24px;
  border-radius: var(--curve);
  background: var(--panel-2);
  border: 1px solid var(--rule);
}

.verdict__card h3 { margin-bottom: 14px; }
.verdict__card ul { margin: 0; padding: 0; list-style: none; }
.verdict__card li { position: relative; padding-left: 28px; margin-bottom: 11px; }
.verdict__card li:last-child { margin-bottom: 0; }

.verdict__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.verdict__card--up li::before { background: var(--yes); }
.verdict__card--down li::before { background: var(--no); }

.voices__meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 22px;
  border-radius: var(--curve);
  background: var(--panel-2);
  border: 1px solid var(--rule);
}

.voices__meter-label { font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.voices__score { display: flex; align-items: center; gap: 12px; }
.voices__score > span { font-family: var(--type-display); font-size: 27px; font-weight: 700; }
.voices__score small { color: var(--ink-soft); font-size: 13px; }
.pips { display: inline-flex; gap: 2px; }
.pips svg { width: 18px; height: 18px; fill: var(--spark); }
.pips__dim { display: inline-flex; }
.pips__dim svg { fill: var(--rule-lit); }

.voices__key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--keyline);
  color: var(--cta-ink);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voices__grid > * { min-width: 0; }

.voices__note {
  padding: 20px;
  border-radius: var(--curve);
  background: var(--panel-2);
  border: 1px solid var(--rule);
}

.voices__who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.voices__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--keyline);
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cta-ink);
}

.voices__id span { display: block; font-weight: 700; }
.voices__id small { color: var(--ink-soft); font-size: 12px; }
.voices__pips { margin-bottom: 10px; }
.voices__body p { margin: 0; font-size: 15px; }

.answers h2 { text-align: center; }

.answers__row {
  padding: 19px 22px;
  margin-bottom: 12px;
  border-radius: var(--curve);
  background: var(--panel-2);
  border: 1px solid var(--rule);
}

.answers__row:last-child { margin-bottom: 0; }
.answers__row h3 { font-size: 18px; margin: 0 0 9px; }
.answers__row p { margin: 0; font-size: 16px; }

.stamp { margin: 0 0 18px; }

.stamp__box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--curve);
  background: var(--panel);
  border: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-soft);
}

.stamp__box svg { fill: var(--glow); flex: none; }
.stamp__box time { color: var(--ink); font-weight: 700; }

.base { background: var(--panel); border-top: 1px solid var(--rule); }

.base__row {
  max-width: calc(var(--column) + var(--edge) * 2);
  margin-inline: auto;
  padding-inline: var(--edge);
  padding-block: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 44px 60px;
}

.base__row > * { min-width: 0; }
.base__brand { max-width: 420px; }
.base__brand .mark img { height: 52px; width: auto; margin-bottom: 18px; }
.base__pitch { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.base__cap { font-family: var(--type-display); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.base__social { display: flex; gap: 10px; margin-bottom: 24px; }

.social-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--rule);
  transition: border-color .2s, background .2s;
}

.social-key img { width: 20px; height: 20px; }
.social-key:hover { background: var(--panel-3); border-color: var(--rule-lit); }
.base__app { margin-bottom: 0; }
.base__app p { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.base__stores { display: flex; gap: 10px; }

.store-key {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--keyline);
  color: var(--cta-ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.store-key img { width: 20px; height: 20px; }
.base__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.links { min-width: 0; }
.links__list { list-style: none; margin: 0; padding: 0; }
.links__list li { margin-bottom: 5px; }
.links__list .hop { display: inline-block; padding: 5px 0; font-size: 14px; line-height: 1.3; color: var(--ink-soft); }
.links__list .hop:hover { color: var(--ink); text-decoration: underline; }

.base__cashier {
  max-width: calc(var(--column) + var(--edge) * 2);
  margin-inline: auto;
  padding-inline: var(--edge);
  padding-block: 0 26px;
  text-align: center;
}

.base__cashier-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  justify-items: center;
  gap: 18px 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}

.base__cashier-strip img { height: 30px; width: auto; max-width: 100%; }

.base__seals {
  max-width: calc(var(--column) + var(--edge) * 2);
  margin-inline: auto;
  padding-inline: var(--edge);
  padding-block: 0 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
}

.base__seals img { height: 26px; width: auto; max-width: 100%; opacity: .9; }
.base__seals a { display: inline-flex; align-items: center; min-height: 26px; }
.base__seals a[href*="dmca"] img { height: 34px; }
.base__seals a:hover img { opacity: 1; }

.flag-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--no);
  color: var(--no);
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 15px;
}

.base__foot { border-top: 1px solid var(--rule); }

.smallprint {
  max-width: calc(var(--column) + var(--edge) * 2);
  margin-inline: auto;
  padding-inline: var(--edge);
  padding-block: 22px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.smallprint p { margin: 0 0 8px; }
.smallprint p:last-child { margin-bottom: 0; }

.lift {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--panel-3);
  border: 1px solid var(--rule-lit);
  cursor: pointer;
}

.lift.lit { display: flex; }
.lift svg { fill: var(--ink); }

@media (max-width: 1100px) {
  .topbar__row { gap: 12px; }
  .routes__list .hop { padding: 8px 10px; font-size: 13px; }
  .routes__list .hop svg { display: none; }
  .shelf__grid { grid-template-columns: repeat(3, 1fr); }
  .base__cols { gap: 34px; }
}

@media (max-width: 1000px) {
  .stack-icon { display: flex; order: 3; }
  .topbar__pair { order: 2; }
  .routes {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    padding: 14px var(--edge) 20px;
    background: var(--panel);
    border-bottom: 1px solid var(--rule);
  }
  .drawer-switch:checked ~ .routes { display: block; }
  .drawer-switch:checked ~ .stack-icon span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .drawer-switch:checked ~ .stack-icon span:nth-child(2) { opacity: 0; }
  .drawer-switch:checked ~ .stack-icon span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .routes__list { flex-direction: column; gap: 8px; }
  .routes__list .hop { padding: 11px 14px; font-size: 15px; }
  .routes__list .hop svg { display: block; }
  .routes__pair { display: none; }
  .base__row { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .base__cashier-strip { grid-template-columns: repeat(6, 1fr); }
  .base__seals { gap: 16px 26px; }
}

@media (max-width: 768px) {
  :root { --edge: 24px; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }
  .panel, .shelf, .voices, .answers, .winline, .factsheet { padding: 24px 20px; }
  .prose p, .prose li, .opening__lede { font-size: 16px; }
  th, td { padding: 10px 10px; font-size: 13.5px; }
  .factsheet__band { font-size: 19px; min-height: 56px; }
  .factsheet td:first-child { width: 36%; }
  .shelf__switch { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shelf__key { height: 44px; font-size: 14px; }
  .shelf__grid { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .verdict__pair { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .voices__meter { flex-direction: column; align-items: flex-start; }
  .voices__key { width: 100%; }
  .base__cashier-strip { grid-template-columns: repeat(5, 1fr); }
  .base__seals img { height: 23px; }
}

@media (max-width: 560px) {
  :root { --edge: 18px; }
  .topbar__row { height: 60px; gap: 8px; }
  .routes { top: 60px; }
  .mark img { height: 34px; }
  .topbar__pair { display: none; }
  .stack-icon { margin-left: auto; }
  .routes__pair { display: flex; gap: 10px; margin-top: 16px; }
  .routes__pair > * { flex: 1; }
  .enter-key, .signup-key { height: 44px; padding: 0 14px; font-size: 14px; }
  .shelf__grid { grid-template-columns: repeat(2, 1fr); }
  .voices__grid { grid-template-columns: 1fr; }
  .card__name { font-size: 14px; }
  .deal-key { min-height: 54px; font-size: 16px; }
  .winline__row { grid-template-columns: 1fr auto; row-gap: 4px; }
  .winline__when { grid-column: 1 / -1; }
  .base__cashier-strip { grid-template-columns: repeat(4, 1fr); gap: 16px 10px; }
  .base__seals { gap: 14px 20px; }
  .base__cols { gap: 24px; }
  .base__stores { flex-direction: column; }
  .store-key { justify-content: center; }
}

@media (max-width: 380px) {
  :root { --edge: 14px; }
  h1 { font-size: 27px; }
  h2 { font-size: 21px; }
  .stack-icon { width: 38px; padding: 8px; }
  .shelf__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  th, td { padding: 8px 7px; font-size: 12.5px; }
}
