:root {
  --ink: #183435;
  --ink-soft: #224647;
  --paper: #fff1df;
  --paper-deep: #ead9c4;
  --white: #fff8ed;
  --muted: #776b5e;
  --line: rgba(31, 43, 42, 0.17);
  --accent: #2f8881;
  --accent-rgb: 47, 136, 129;
  --accent-dark: #1f6f6b;
  --success: #2f8881;
  --header-height: 84px;
  --gutter: clamp(22px, 5vw, 84px);
  --display: "Arial Narrow", "Aptos Display", "Microsoft YaHei UI", sans-serif;
  --sans: Inter, "SF Pro Display", "Segoe UI", "Microsoft YaHei UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto minmax(92px, 1fr) auto;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 240ms ease, background 240ms ease, border 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(243, 238, 228, 0.93);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  transform: rotate(-8deg);
}

.brand-mark i {
  position: absolute;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform-origin: 3px 3px;
}

.brand-mark i:nth-child(1) {
  left: 3px;
  top: 5px;
  transform: rotate(18deg);
}

.brand-mark i:nth-child(2) {
  left: 10px;
  top: 14px;
  transform: rotate(78deg);
}

.brand-mark i:nth-child(3) {
  left: 3px;
  top: 24px;
  transform: rotate(-18deg);
}

.brand-type {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-type strong {
  font-size: 23px;
  letter-spacing: 0.12em;
}

.brand-type small {
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.82;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.header-search {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header-search span {
  font-size: 13px;
}

.header-search kbd {
  padding: 4px 7px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid currentColor;
  border-radius: 4px;
  font: 9px var(--sans);
  opacity: 0.7;
}

.site-header.is-scrolled .header-search kbd {
  background: rgba(31, 43, 42, 0.05);
}

.language-control {
  position: relative;
  justify-self: end;
  margin-left: 22px;
}

.language-trigger {
  min-width: 74px;
  height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-trigger:hover,
.language-trigger:focus-visible {
  background: rgba(var(--accent-rgb), 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.language-trigger:active { transform: scale(0.97); }
.language-trigger span { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; }
.language-globe { color: var(--accent); font-size: 16px; line-height: 1; }
.language-trigger i {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.language-control.is-open .language-trigger i { transform: rotate(225deg) translate(-1px, -1px); }

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 154px;
  padding: 7px;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(24, 52, 53, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-control.is-open .language-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu button {
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active { background: rgba(var(--accent-rgb), 0.12); outline: none; }
.language-menu small { color: var(--muted); font-size: 9px; letter-spacing: 0.12em; }
.site-header.is-scrolled .language-trigger {
  background: rgba(255, 248, 237, 0.6);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop,
.hero-backdrop::before,
.hero-backdrop::after,
.hero-backdrop img,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -2;
  background: var(--ink);
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) sepia(0.1) contrast(1.04);
  transform: scale(1.045) translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll, 0px)), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-backdrop::before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(32, 31, 27, 0.79) 0%, rgba(38, 39, 33, 0.47) 39%, rgba(49, 43, 34, 0.08) 72%),
    linear-gradient(0deg, rgba(31, 29, 25, 0.72) 0%, transparent 38%),
    radial-gradient(circle at 78% 24%, rgba(208, 138, 70, 0.24), transparent 29%);
}

.hero-backdrop::after {
  content: "";
  z-index: 1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-grid {
  z-index: 2;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  width: min(680px, 72vw);
  padding: calc(var(--header-height) + 62px) 0 150px var(--gutter);
}

.eyebrow {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  font-family: var(--display);
  font-size: clamp(56px, 6.2vw, 108px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  max-width: 540px;
  margin: 30px 0 38px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.75;
  opacity: 0.78;
}

.hero-search {
  position: relative;
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: 28px 1fr 46px;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transition: border-color 200ms ease;
}

.hero-search:focus-within {
  border-color: var(--accent);
}

.search-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(48deg);
  transform-origin: left;
}

.hero-search input {
  min-width: 0;
  padding: 18px 12px 18px 4px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(18px, 2vw, 25px);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.hero-search > button {
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 200ms ease;
}

.hero-search > button:hover {
  transform: rotate(45deg);
}

.search-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: none;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.search-suggestions.is-open {
  display: block;
  animation: suggestion-in 180ms ease both;
}

.suggestion {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.suggestion:last-child {
  border-bottom: 0;
}

.suggestion:hover,
.suggestion:focus-visible {
  background: var(--paper-deep);
  outline: 0;
}

.suggestion img {
  width: 48px;
  height: 58px;
  object-fit: cover;
}

.suggestion strong,
.suggestion small {
  display: block;
}

.suggestion small {
  margin-top: 4px;
  color: var(--muted);
}

.suggestion > span:last-child {
  color: var(--accent);
  font-size: 19px;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 34px;
}

.hero-quicklinks a {
  position: relative;
  padding: 9px 0 7px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.hero-quicklinks a:hover,
.hero-quicklinks a:focus-visible {
  opacity: 1;
  border-bottom-color: var(--accent);
  outline: 0;
}

.hero-quicklinks span {
  margin-right: 6px;
  font: 10px var(--sans);
  color: var(--accent);
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-meta small,
.hero-meta strong {
  display: block;
  text-align: right;
}

.hero-meta small {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.62;
}

.hero-meta strong {
  font-size: 13px;
}

.hero-meta-line {
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.66;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  background: currentColor;
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: cue-line 2s ease infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-reveal 650ms cubic-bezier(0.18, 0.7, 0.18, 1) forwards;
}

.hero h1.reveal {
  animation-delay: 80ms;
}

.hero-copy.reveal {
  animation-delay: 150ms;
}

.hero-search.reveal {
  animation-delay: 220ms;
}

.hero-quicklinks.reveal {
  animation-delay: 290ms;
}

.signal-strip {
  color: rgba(255, 255, 255, 0.8);
  background: var(--accent-dark, #1b6d69);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.signal-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px var(--gutter);
  white-space: nowrap;
  animation: signal-drift 35s linear infinite alternate;
}

.signal-track span,
.signal-track b,
.signal-track strong {
  font-size: 11px;
}

.signal-track span,
.signal-track b {
  letter-spacing: 0.1em;
}

.signal-track span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.signal-track span i {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.signal-track strong {
  margin-left: -18px;
  font-weight: 400;
  opacity: 0.78;
}

.section {
  padding: clamp(90px, 11vw, 170px) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  align-self: start;
  color: var(--accent);
  font: 700 12px var(--sans);
}

.section-heading p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading .section-note {
  margin: 0;
  max-width: 190px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: right;
}

.radar {
  background: var(--paper);
}

.radar-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(540px, 1.08fr);
  gap: clamp(50px, 8vw, 140px);
  padding-top: 60px;
}

.observation-list {
  align-self: center;
}

.observation {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 24px;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 220ms ease, color 220ms ease;
}

.observation:first-child {
  border-top: 1px solid var(--line);
}

.observation:hover,
.observation.is-active {
  padding-left: 14px;
  color: var(--accent);
}

.observation-rank {
  font-size: 10px;
  color: var(--muted);
}

.observation-title small,
.observation-title strong,
.observation-price small,
.observation-price strong {
  display: block;
}

.observation-title small,
.observation-price small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.observation-title strong {
  color: var(--ink);
  font-size: clamp(16px, 1.4vw, 21px);
}

.observation-price {
  min-width: 84px;
  text-align: right;
}

.observation-price strong {
  font-size: 23px;
}

.observation .arrow {
  transition: transform 180ms ease;
}

.observation:hover .arrow,
.observation.is-active .arrow {
  transform: translate(3px, -3px);
}

.price-orbit {
  position: relative;
  min-height: 565px;
  padding: clamp(28px, 3vw, 50px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.price-orbit::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -210px;
  top: -190px;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(var(--accent-rgb), 0.05),
    0 0 0 90px rgba(var(--accent-rgb), 0.04);
}

.orbit-head,
.orbit-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.orbit-head small,
.orbit-head h3 {
  display: block;
  margin: 0;
}

.orbit-head small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.orbit-head h3 {
  font-size: 26px;
}

.source-state {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 10px;
}

.orbit-summary {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding: 22px 0 28px;
  display: grid;
  grid-template-columns: minmax(170px, .72fr) minmax(250px, 1.28fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.orbit-price small,
.orbit-price strong,
.orbit-price span {
  display: block;
}

.orbit-price small {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.54;
}

.orbit-price strong {
  margin: 5px 0 3px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
}

.orbit-price span {
  font-size: 11px;
  opacity: 0.56;
}

.series-policy { max-width: 360px; justify-self: end; }
.series-policy small,
.series-policy strong { display: block; }
.series-policy small { margin-bottom: 8px; color: var(--accent); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.series-policy strong { font-size: 18px; }
.series-policy p { margin: 9px 0 0; color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.65; }

.tier-ledger { position: relative; z-index: 1; margin-top: 26px; }
.tier-ledger-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.tier-ledger-head strong { font-size: 12px; }
.tier-ledger-head span { color: rgba(255,255,255,.46); font-size: 9px; }
.tier-records { border-top: 1px solid rgba(255,255,255,.16); }
.tier-record {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(110px, .9fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  animation: tier-in 240ms ease both;
}
.tier-record span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; font-weight: 800; }
.tier-record small { color: rgba(255,255,255,.46); font-size: 9px; }
.tier-record strong { color: var(--accent); font-size: 16px; }
.tier-record:nth-child(2) { animation-delay: 35ms; }
.tier-record:nth-child(3) { animation-delay: 70ms; }
.tier-record:nth-child(4) { animation-delay: 105ms; }
.tier-record:nth-child(5) { animation-delay: 140ms; }

.orbit-footer {
  align-items: flex-end;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.orbit-footer p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.orbit-footer a {
  flex: none;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 5px;
}

.orbit-footer a span {
  display: inline-block;
  margin-left: 5px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.orbit-footer a:hover span {
  transform: translate(3px, -3px);
}

.archive {
  background: var(--white);
  overflow: hidden;
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-controls button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.rail-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.archive-tabs {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 28px 0 50px;
}

.archive-tabs button {
  padding: 8px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.archive-tabs button.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.archive-tabs span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.game-rail {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.4vw, 42px);
  padding: 0 var(--gutter) 28px 0;
  margin-right: calc(var(--gutter) * -1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

.game-record {
  flex: 0 0 clamp(210px, 19vw, 300px);
  display: block;
  padding: 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: opacity 220ms ease, transform 220ms ease;
}

.game-record.is-filtered {
  display: none;
}

.cover-wrap {
  position: relative;
  display: block;
  aspect-ratio: 0.752;
  overflow: hidden;
  background: var(--paper-deep);
}

.cover-wrap::after {
  content: "打开档案 ↗";
  position: absolute;
  inset: auto 14px 14px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(24, 52, 53, 0.93);
  transform: translateY(calc(100% + 20px));
  transition: transform 260ms cubic-bezier(0.16, 0.75, 0.24, 1);
  font-size: 11px;
}

.game-record:hover .cover-wrap::after,
.game-record:focus-visible .cover-wrap::after {
  transform: translateY(0);
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.2, 1), filter 400ms ease;
}

.game-record:hover .cover-wrap img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.record-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 15px 0 9px;
  font-size: 9px;
}

.record-meta i {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.record-meta b {
  color: var(--muted);
  font-weight: 500;
}

.game-record > strong,
.game-record > small {
  display: block;
}

.game-record > strong {
  font-size: clamp(18px, 1.5vw, 24px);
}

.game-record > small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.history {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(50px, 10vw, 170px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.history-media {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
}

.history-media::before {
  content: "";
  position: absolute;
  inset: -28px 28px 28px -28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.history-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  background: #ebe6dc;
}

.media-stamp {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 34px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  transform: rotate(-5deg);
}

.history-copy {
  max-width: 720px;
}

.history-copy .eyebrow {
  color: var(--accent);
}

.history-copy h2 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(52px, 6.2vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.history-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.9;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.history-stats div {
  padding: 22px 20px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.history-stats div:not(:first-child) {
  padding-left: 20px;
}

.history-stats div:last-child {
  border-right: 0;
}

.history-stats dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.history-stats dd {
  margin: 0;
  font-size: 23px;
}

.text-action {
  padding: 0 0 7px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.text-action span {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translate(3px, -3px);
}

.closing {
  position: relative;
  min-height: 680px;
  padding: 140px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--paper);
  overflow: hidden;
}

.closing > p {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.closing h2 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.closing > button {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 17px 22px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  cursor: pointer;
}

.closing > button span {
  margin-left: 34px;
  color: var(--accent);
}

.closing-orbit,
.closing-orbit i {
  position: absolute;
  border: 1px solid rgba(31, 43, 42, 0.15);
  border-radius: 50%;
}

.closing-orbit {
  width: min(68vw, 900px);
  aspect-ratio: 1;
  right: -18vw;
  top: 50%;
  transform: translateY(-50%);
}

.closing-orbit i:nth-child(1) {
  inset: 13%;
}

.closing-orbit i:nth-child(2) {
  inset: 29%;
}

.closing-orbit i:nth-child(3) {
  width: 18px;
  height: 18px;
  left: 4%;
  top: 48%;
  background: var(--accent);
  border: 0;
  box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0.12);
  transform-origin: calc(min(68vw, 900px) * 0.46) center;
  animation: orbit-dot 13s linear infinite;
}

.site-footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px var(--gutter);
  color: rgba(255, 255, 255, 0.56);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.footer-brand span {
  margin-left: 8px;
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0.5;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer small {
  justify-self: end;
  text-align: right;
}

.drawer-shell {
  position: fixed;
  z-index: 120;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.drawer-shell.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 8, 7, 0.72);
  border: 0;
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 300ms ease;
}

.drawer-shell.is-open .drawer-backdrop {
  opacity: 1;
}

.detail-drawer {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(680px, 92vw);
  height: 100%;
  color: var(--ink);
  background: var(--paper);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.16, 0.76, 0.2, 1);
}

.drawer-shell.is-open .detail-drawer {
  transform: translateX(0);
}

.drawer-header {
  position: sticky;
  z-index: 4;
  top: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 50px);
  background: rgba(243, 238, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.drawer-header span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.drawer-header button {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.drawer-content {
  padding: clamp(28px, 5vw, 54px);
}

.drawer-cover {
  position: relative;
  width: min(290px, 62%);
  margin: 0 0 36px auto;
}

.drawer-cover img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: right center;
  background: #e5e1d7;
}

.drawer-cover span {
  position: absolute;
  left: -26px;
  bottom: 22px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
}

.drawer-titleblock {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.drawer-titleblock p {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.drawer-titleblock h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.drawer-titleblock > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.drawer-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 52px;
  border-bottom: 1px solid var(--line);
}

.drawer-fact {
  padding: 20px 16px 20px 0;
}

.drawer-fact:not(:first-child) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.drawer-fact small,
.drawer-fact strong {
  display: block;
}

.drawer-fact small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
}

.drawer-fact strong {
  font-size: 15px;
}

.drawer-section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 18px;
}

.drawer-section-title h3,
.drawer-section-title small {
  margin: 0;
}

.drawer-section-title h3 {
  font-size: 21px;
}

.drawer-section-title small {
  color: var(--muted);
  font-size: 9px;
}

.drawer-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.drawer-offer:last-child {
  border-bottom: 1px solid var(--line);
}

.drawer-offer small,
.drawer-offer strong {
  display: block;
}

.drawer-offer small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
}

.drawer-offer strong {
  font-size: 15px;
}

.drawer-offer-price {
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
}

.drawer-offer a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.drawer-empty {
  padding: 38px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.8;
}

.drawer-footnote {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.drawer-open {
  overflow: hidden;
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes suggestion-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cue-line {
  0%, 15% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

@keyframes signal-drift {
  to { transform: translateX(-7%); }
}

@keyframes tier-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-dot {
  to { transform: rotate(360deg); }
}

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

  .observation-list {
    max-width: none;
  }

  .price-orbit {
    min-height: 540px;
  }

  .history {
    grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
    gap: 65px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .site-header { grid-template-columns: 1fr auto auto; }

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: 92vw;
    padding-bottom: 180px;
  }

  .hero h1 {
    font-size: clamp(52px, 11vw, 82px);
  }

  .hero-backdrop img {
    object-position: 65% center;
  }

  .hero-backdrop::before {
    background: linear-gradient(90deg, rgba(8, 9, 8, 0.86), rgba(8, 9, 8, 0.4)),
      linear-gradient(0deg, rgba(8, 9, 8, 0.78) 0%, transparent 58%);
  }

  .hero-meta {
    left: var(--gutter);
    right: var(--gutter);
    justify-content: flex-end;
  }

  .hero-meta > div:first-child {
    display: none;
  }

  .section-heading {
    grid-template-columns: 36px 1fr;
  }

  .section-heading .section-note,
  .rail-controls {
    display: none;
  }

  .history {
    grid-template-columns: 1fr;
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .history-media {
    justify-self: center;
    width: min(72vw, 460px);
  }

  .history-copy {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer small {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .brand-type small,
  .header-search span {
    display: none;
  }

  .language-control { margin-left: 10px; }
  .language-trigger { min-width: 48px; padding: 0 9px; }
  .language-globe, .language-trigger i { display: none; }

  .site-header {
    height: 64px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: auto;
    padding: 115px 20px 170px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero-search {
    grid-template-columns: 24px 1fr 42px;
  }

  .hero-search input {
    font-size: 17px;
  }

  .hero-quicklinks {
    gap: 16px;
    justify-content: space-between;
  }

  .hero-quicklinks a {
    font-size: 11px;
  }

  .scroll-cue {
    bottom: 28px;
  }

  .hero-meta {
    bottom: 28px;
  }

  .signal-track {
    gap: 20px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    gap: 12px;
    padding-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .radar-layout {
    gap: 50px;
    padding-top: 38px;
  }

  .observation {
    grid-template-columns: 28px minmax(0, 1fr) auto;
  }

  .observation-price small,
  .observation .arrow {
    display: none;
  }

  .observation-title strong {
    font-size: 15px;
  }

  .observation-price {
    min-width: 60px;
  }

  .observation-price strong {
    font-size: 19px;
  }

  .price-orbit {
    min-height: 490px;
    margin: 0 -20px;
    padding: 28px 20px;
  }

  .orbit-summary { grid-template-columns: 1fr; gap: 24px; margin-top: 30px; }
  .series-policy { justify-self: start; }
  .tier-ledger-head { align-items: flex-start; }
  .tier-ledger-head span { max-width: 110px; text-align: right; line-height: 1.5; }
  .tier-record { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 12px; padding: 10px 0; }
  .tier-record small { grid-column: 1; grid-row: 2; }
  .tier-record strong { grid-column: 2; grid-row: 1 / span 2; }

  .orbit-footer {
    display: block;
    margin-top: 34px;
  }

  .orbit-footer p {
    margin-bottom: 20px;
  }

  .archive-tabs {
    gap: 18px;
    margin-bottom: 34px;
  }

  .archive-tabs span {
    display: none;
  }

  .game-record {
    flex-basis: min(72vw, 270px);
  }

  .history {
    gap: 72px;
  }

  .history-copy h2 {
    font-size: 58px;
  }

  .history-stats {
    grid-template-columns: 1fr;
  }

  .history-stats div,
  .history-stats div:not(:first-child) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .history-stats div:last-child {
    border-bottom: 0;
  }

  .closing {
    min-height: 620px;
    padding: 100px 20px;
  }

  .closing h2 {
    font-size: 62px;
  }

  .closing-orbit {
    width: 100vw;
    right: -54vw;
  }

  .detail-drawer {
    inset: 20px 0 0;
    width: 100%;
    height: calc(100% - 20px);
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }

  .drawer-shell.is-open .detail-drawer {
    transform: translateY(0);
  }

  .drawer-content {
    padding: 24px 20px 50px;
  }

  .drawer-cover {
    width: 58%;
  }

  .drawer-facts {
    grid-template-columns: 1fr;
  }

  .drawer-fact,
  .drawer-fact:not(:first-child) {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .drawer-fact:last-child {
    border-bottom: 0;
  }

  .drawer-offer {
    grid-template-columns: minmax(0, 1fr) auto 34px;
    gap: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
