:root {
  color-scheme: dark;
  --page-bg: #080c09;
  --page-surface: #101612;
  --page-surface-2: #151c17;
  --page-line: rgba(210, 231, 213, 0.13);
  --page-line-strong: rgba(210, 231, 213, 0.25);
  --page-text: #f3f7f1;
  --page-soft: #c8d2c8;
  --page-muted: #8f9d91;
  --page-green: #94f43f;
  --page-green-deep: #00c805;
  --page-cyan: #55d8f7;
  --page-amber: #f2bd55;
  --page-coral: #ff755f;
  --page-display: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
  --page-body: "Segoe UI", Arial, sans-serif;
  --page-mono: "Cascadia Mono", Consolas, "Courier New", monospace;
  --page-max: 1220px;
  --page-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: var(--page-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--page-cyan);
  outline-offset: 3px;
}

.game-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--page-line);
  background: rgba(8, 12, 9, 0.94);
  backdrop-filter: blur(14px);
}

.game-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  text-decoration: none;
}

.game-brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(148, 244, 63, 0.4);
  border-radius: 7px;
  background: rgba(148, 244, 63, 0.09);
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 14px;
  font-weight: 700;
}

.game-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.game-brand strong {
  font-family: var(--page-display);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.1;
}

.game-brand small {
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.game-page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.game-page-nav a,
.game-language button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--page-soft);
  font-family: var(--page-mono);
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.game-page-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
}

.game-page-nav a:hover,
.game-language button:hover,
.game-language button.is-active {
  background: rgba(255, 255, 255, 0.055);
  color: var(--page-green);
}

.game-language {
  display: inline-flex;
  justify-self: end;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--page-line);
  border-radius: 8px;
}

.game-language button {
  width: 40px;
}

.game-page-loading {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100svh - 68px);
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 13px;
}

.game-loading-line {
  position: relative;
  display: block;
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.game-loading-line::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: var(--page-green);
  content: "";
  animation: game-loading 1.1s ease-in-out infinite alternate;
}

@keyframes game-loading {
  to { transform: translateX(122%); }
}

.game-profile-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: calc(100svh - 116px);
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--page-line);
  background: #0b100c;
}

.game-profile-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-profile-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 8, 0.98) 0%, rgba(7, 11, 8, 0.88) 40%, rgba(7, 11, 8, 0.24) 76%, rgba(7, 11, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 11, 8, 0.08) 30%, rgba(7, 11, 8, 0.93) 100%);
}

.game-profile-hero-content {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 72px 28px 44px;
}

.game-profile-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  font-family: var(--page-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.game-profile-kicker > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 12, 9, 0.66);
  color: var(--page-soft);
}

.game-profile-kicker .game-status {
  border-color: rgba(148, 244, 63, 0.42);
  color: var(--page-green);
}

.game-profile-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--page-display);
  font-size: 76px;
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: 0;
}

.game-profile-tagline {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--page-soft);
  font-size: 19px;
  line-height: 1.5;
}

.game-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.game-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(10, 15, 11, 0.74);
  color: var(--page-text);
  font-family: var(--page-mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.game-page-button span {
  color: var(--page-green);
  font-size: 16px;
}

.game-page-button b {
  font: inherit;
}

.game-page-button:hover {
  border-color: rgba(148, 244, 63, 0.5);
  background: rgba(20, 28, 21, 0.9);
}

.game-page-button.is-primary {
  border-color: var(--page-green);
  background: var(--page-green);
  color: #081008;
  box-shadow: 0 10px 28px rgba(52, 210, 16, 0.18);
}

.game-page-button.is-primary span {
  color: inherit;
}

.game-page-button.is-primary:hover {
  background: #adff64;
}

.game-hero-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(115px, 170px));
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 9, 0.46);
}

.game-hero-snapshot > span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 11px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.game-hero-snapshot > span:last-child {
  border-right: 0;
}

.game-hero-snapshot small,
.game-facts span,
.game-detail-market-stats span,
.game-market-source,
.game-contract-row span {
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.game-hero-snapshot strong {
  overflow: hidden;
  font-family: var(--page-display);
  font-size: 20px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-positive {
  color: var(--page-green) !important;
}

.is-negative {
  color: var(--page-coral) !important;
}

.is-neutral {
  color: var(--page-soft) !important;
}

.game-section-nav {
  position: sticky;
  top: 68px;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 48px;
  overflow-x: auto;
  border-bottom: 1px solid var(--page-line);
  background: rgba(11, 16, 12, 0.95);
  scrollbar-width: none;
}

.game-section-nav::-webkit-scrollbar {
  display: none;
}

.game-section-nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 48px;
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.game-section-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--page-green);
  content: "";
  opacity: 0;
}

.game-section-nav a:hover {
  color: var(--page-text);
}

.game-section-nav a:hover::after {
  opacity: 1;
}

.game-page-band {
  padding: 88px 0;
  border-bottom: 1px solid var(--page-line);
  background: var(--page-bg);
}

.game-page-band:nth-of-type(odd) {
  background: #0a0f0b;
}

.game-page-inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.game-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.75fr);
  gap: 92px;
  align-items: start;
}

.game-section-heading > span,
.game-band-title > div > span,
.game-history-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.game-section-heading h2,
.game-band-title h2 {
  margin: 0;
  font-family: var(--page-display);
  font-size: 46px;
  font-weight: 650;
  line-height: 1;
}

.game-section-heading > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--page-soft);
  font-size: 18px;
  line-height: 1.75;
}

.game-facts {
  display: grid;
  border-top: 1px solid var(--page-line-strong);
}

.game-facts > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--page-line);
}

.game-facts strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--page-display);
  font-size: 17px;
  font-weight: 600;
}

.game-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 64px;
}

.game-feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: var(--page-surface);
}

.game-feature > span,
.game-evidence-item > span {
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 11px;
}

.game-feature h3 {
  margin: 34px 0 10px;
  font-family: var(--page-display);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.12;
}

.game-feature p {
  margin: 0;
  color: var(--page-muted);
  line-height: 1.65;
}

.game-market-band {
  background: #0d130f !important;
}

.game-band-title {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 38px;
}

.game-band-title > p {
  max-width: 540px;
  margin: 0;
  color: var(--page-muted);
  font-size: 16px;
  line-height: 1.65;
}

.game-detail-market-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.game-detail-market-stats article {
  display: grid;
  align-content: space-between;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: var(--page-surface-2);
}

.game-detail-market-stats strong {
  min-width: 0;
  overflow: hidden;
  font-family: var(--page-display);
  font-size: 31px;
  font-weight: 650;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-detail-market-stats small {
  min-height: 18px;
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 11px;
}

.game-history-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: 44px;
  padding: 38px 0 30px;
  border-top: 1px solid var(--page-line-strong);
  border-bottom: 1px solid var(--page-line);
}

.game-history-copy h3,
.game-community-panel h3 {
  margin: 0;
  font-family: var(--page-display);
  font-size: 27px;
  font-weight: 650;
  line-height: 1.1;
}

.game-history-copy > p {
  max-width: 280px;
  margin: 12px 0 20px;
  color: var(--page-muted);
}

.game-chart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.game-chart-controls button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--page-line);
  border-radius: 6px;
  background: transparent;
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 9px;
  text-transform: uppercase;
  cursor: pointer;
}

.game-chart-controls button:hover,
.game-chart-controls button.is-active {
  border-color: rgba(148, 244, 63, 0.42);
  background: rgba(148, 244, 63, 0.08);
  color: var(--page-green);
}

#gameChartBody {
  min-width: 0;
}

.game-chart-canvas-shell {
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  border-left: 1px solid var(--page-line);
  background: rgba(4, 8, 5, 0.26);
}

.game-chart-canvas-shell canvas {
  display: block;
  max-width: 100%;
}

.game-chart-canvas-shell p {
  max-width: 500px;
  margin: 0;
  padding: 30px;
  color: var(--page-muted);
  text-align: center;
}

.game-chart-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.game-chart-range span:last-child {
  text-align: right;
}

.game-chart-range strong {
  margin-left: 4px;
  color: var(--page-soft);
  font-weight: 600;
}

.game-market-source {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
}

.game-market-source small {
  color: var(--page-muted);
  font-size: 10px;
}

.game-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.game-gallery-item {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: var(--page-surface);
  cursor: zoom-in;
}

.game-gallery-item-1 {
  grid-column: span 8;
  grid-row: span 2;
}

.game-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.game-gallery-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(5, 8, 6, 0.76);
  color: var(--page-soft);
  font-family: var(--page-mono);
  font-size: 9px;
}

.game-gallery-item:hover img {
  transform: scale(1.02);
  filter: brightness(1.07);
}

.game-trust-band {
  background: #0e1410 !important;
}

.game-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.65fr);
  gap: 68px;
  align-items: start;
}

.game-evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--page-line-strong);
}

.game-evidence-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px 12px;
  align-content: start;
  min-height: 132px;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--page-line);
}

.game-evidence-item:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--page-line);
}

.game-evidence-item:nth-child(even) {
  padding-left: 24px;
}

.game-evidence-item p {
  margin: 0;
  color: var(--page-soft);
  line-height: 1.55;
}

.game-evidence-item a {
  grid-column: 2;
  width: fit-content;
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.game-community-panel {
  padding-left: 28px;
  border-left: 2px solid var(--page-cyan);
}

.game-community-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.game-community-summary span {
  display: grid;
  gap: 4px;
  color: var(--page-muted);
  font-family: var(--page-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.game-community-summary strong {
  color: var(--page-cyan);
  font-family: var(--page-display);
  font-size: 30px;
  line-height: 1;
}

.game-community-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.game-community-list article {
  padding: 14px;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: rgba(255, 255, 255, 0.02);
}

.game-community-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.game-community-list article span,
.game-community-list article a {
  color: var(--page-cyan);
  font-family: var(--page-mono);
  font-size: 10px;
}

.game-community-list article p {
  margin: 8px 0;
  color: var(--page-muted);
  font-size: 14px;
}

.game-empty-copy {
  margin: 20px 0 0;
  color: var(--page-muted);
  line-height: 1.65;
}

.game-community-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(85, 216, 247, 0.4);
  border-radius: 6px;
  color: var(--page-cyan);
  font-family: var(--page-mono);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.game-community-cta:hover {
  background: rgba(85, 216, 247, 0.08);
}

.game-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.game-source-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: var(--page-surface);
  text-decoration: none;
}

.game-source-link > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--page-line-strong);
  border-radius: 6px;
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 12px;
}

.game-source-link strong {
  min-width: 0;
  overflow: hidden;
  font-family: var(--page-display);
  font-size: 17px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-source-link:hover {
  border-color: rgba(148, 244, 63, 0.46);
  background: var(--page-surface-2);
}

.game-contract-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--page-line-strong);
  border-bottom: 1px solid var(--page-line);
}

.game-contract-row > div {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.game-contract-row code {
  overflow: hidden;
  color: var(--page-soft);
  font-family: var(--page-mono);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-contract-row button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--page-line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
}

.game-contract-row button:hover {
  background: rgba(148, 244, 63, 0.08);
}

.game-page-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 110px;
  padding: 26px max(28px, calc((100vw - var(--page-max)) / 2 + 28px));
  background: #060906;
  color: var(--page-muted);
  font-size: 13px;
}

.game-page-footer strong {
  color: var(--page-soft);
  font-family: var(--page-display);
  font-size: 17px;
}

.game-page-footer p {
  margin: 0;
  text-align: center;
}

.game-page-footer a {
  justify-self: end;
  color: var(--page-green);
  font-family: var(--page-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.game-lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--page-line-strong);
  border-radius: var(--page-radius);
  background: #070a08;
  color: var(--page-soft);
}

.game-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(4px);
}

.game-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 110px);
  object-fit: contain;
}

.game-lightbox p {
  margin: 9px 44px 2px 2px;
  color: var(--page-muted);
  font-size: 13px;
}

.game-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(5, 8, 6, 0.82);
  color: var(--page-text);
  font-family: var(--page-mono);
  cursor: pointer;
}

.game-not-found {
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: calc(100svh - 68px);
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 70px 28px;
}

.game-not-found > span {
  color: var(--page-coral);
  font-family: var(--page-mono);
  font-size: 12px;
}

.game-not-found h1 {
  margin: 12px 0;
  font-family: var(--page-display);
  font-size: 58px;
  line-height: 1;
}

.game-not-found p {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--page-muted);
  font-size: 17px;
}

@media (max-width: 980px) {
  .game-site-header {
    grid-template-columns: 1fr auto;
  }

  .game-page-nav {
    display: none;
  }

  .game-profile-hero h1 {
    font-size: 62px;
  }

  .game-overview-layout,
  .game-trust-layout {
    gap: 48px;
  }

  .game-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-feature:last-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .game-detail-market-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .game-history-copy > p {
    max-width: 600px;
  }

  .game-chart-canvas-shell {
    border-left: 0;
    border-top: 1px solid var(--page-line);
  }

  .game-gallery-grid {
    grid-auto-rows: 160px;
  }

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

  .game-community-panel {
    padding-top: 22px;
    padding-left: 24px;
    border-top: 1px solid var(--page-line);
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  body {
    font-size: 15px;
  }

  .game-site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .game-brand-mark {
    width: 34px;
    height: 34px;
  }

  .game-brand strong {
    font-size: 16px;
  }

  .game-brand small {
    display: none;
  }

  .game-language button {
    width: 36px;
    min-height: 32px;
  }

  .game-profile-hero {
    height: calc(100svh - 106px);
    min-height: 520px;
    max-height: 690px;
  }

  .game-profile-hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 11, 8, 0.96), rgba(7, 11, 8, 0.48)),
      linear-gradient(180deg, rgba(7, 11, 8, 0.12) 10%, rgba(7, 11, 8, 0.96) 88%);
  }

  .game-profile-hero-content {
    padding: 56px 16px 24px;
  }

  .game-profile-hero h1 {
    font-size: 46px;
  }

  .game-profile-tagline {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .game-profile-actions {
    margin-top: 18px;
  }

  .game-page-button {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .game-hero-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 22px;
  }

  .game-hero-snapshot > span:nth-child(2) {
    border-right: 0;
  }

  .game-hero-snapshot > span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .game-hero-snapshot strong {
    font-size: 18px;
  }

  .game-section-nav {
    top: 64px;
    justify-content: flex-start;
    gap: 24px;
    min-height: 42px;
    padding: 0 16px;
  }

  .game-section-nav a {
    min-height: 42px;
  }

  .game-page-band {
    padding: 62px 0;
  }

  .game-page-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .game-overview-layout,
  .game-band-title {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .game-section-heading h2,
  .game-band-title h2 {
    font-size: 38px;
  }

  .game-section-heading > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .game-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 42px;
  }

  .game-feature,
  .game-feature:last-child {
    grid-column: auto;
    min-height: 170px;
    padding: 20px;
  }

  .game-feature h3 {
    margin-top: 26px;
    font-size: 21px;
  }

  .game-band-title {
    margin-bottom: 30px;
  }

  .game-detail-market-stats {
    gap: 8px;
  }

  .game-detail-market-stats article {
    min-height: 112px;
    padding: 14px;
  }

  .game-detail-market-stats strong {
    font-size: 24px;
  }

  .game-history-layout {
    gap: 24px;
    margin-top: 34px;
    padding-top: 30px;
  }

  .game-chart-range {
    grid-template-columns: 1fr 1fr;
  }

  .game-chart-range span:nth-child(2) {
    display: none;
  }

  .game-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 145px;
    gap: 8px;
  }

  .game-gallery-item,
  .game-gallery-item-1 {
    grid-column: auto;
    grid-row: auto;
  }

  .game-gallery-item-1 {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .game-evidence-list {
    grid-template-columns: 1fr;
  }

  .game-evidence-item,
  .game-evidence-item:nth-child(odd),
  .game-evidence-item:nth-child(even) {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
  }

  .game-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-contract-row {
    align-items: stretch;
    flex-direction: column;
  }

  .game-contract-row button {
    align-self: flex-start;
  }

  .game-page-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 16px;
    text-align: left;
  }

  .game-page-footer p {
    text-align: left;
  }

  .game-page-footer a {
    justify-self: start;
  }
}

@media (max-width: 460px) {
  .game-profile-kicker > span:last-child {
    display: none;
  }

  .game-profile-hero h1 {
    font-size: 42px;
  }

  .game-profile-actions .game-page-button {
    flex: 1 1 calc(50% - 5px);
  }

  .game-profile-actions .game-page-button:last-child {
    flex-basis: 100%;
  }

  .game-detail-market-stats {
    grid-template-columns: 1fr;
  }

  .game-detail-market-stats article {
    min-height: 96px;
  }

  .game-source-grid {
    grid-template-columns: 1fr;
  }

  .game-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .game-gallery-item-1 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
