:root {
  --color-deep: #0B132B;
  --color-blue: #1D3557;
  --color-red: #E63946;
  --color-gold: #F4A261;
  --color-cream: #F1FAEE;
  --color-smoke: #A8B2C1;
  --color-brown: #2B2D42;
  --color-neon: #40F99B;
  --font-heading: Oswald, "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  --container-w: 1200px;
  --gutter: 24px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--color-deep);
}

body, h1, h2, h3, h4, p, ul, ol, dl, dd, blockquote, figure {
  margin: 0;
}

ul[class], ol[class] {
  padding: 0;
  list-style: none;
}

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

img, picture, video, svg {
  max-width: 100%;
  display: block;
}

input, textarea, select, button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

button {
  cursor: pointer;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse at 85% -10%, rgba(64, 249, 155, 0.06), transparent 46%),
    var(--color-blue);
}

body.has-open-nav {
  overflow: hidden;
}

@media (min-width: 861px) {
  body {
    border-left: 6px solid var(--color-red);
  }
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

#main-content {
  scroll-margin-top: 24px;
}

.container {
  width: min(100% - 48px, var(--container-w));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 2000;
  display: inline-block;
  padding: 12px 20px;
  background: var(--color-gold);
  color: var(--color-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 100%);
  z-index: 1500;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 100;
  background:
    repeating-linear-gradient(-45deg, rgba(241, 250, 238, 0.025) 0 2px, transparent 2px 14px),
    var(--color-deep);
}

.site-header__bar {
  border-bottom: 1px solid rgba(241, 250, 238, 0.1);
}

.site-header__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (max-width: 480px) {
  .site-header__bar-inner {
    min-height: 64px;
  }
}

.site-header__meta {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--color-red);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--color-cream);
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--color-smoke);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .brand__name {
    font-size: 20px;
  }
  .brand__sub {
    display: none;
  }
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-neon);
  white-space: nowrap;
}

.live-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.live-indicator__text {
  text-transform: uppercase;
}

@keyframes live-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(64, 249, 155, 0.5);
  }
  50% {
    transform: scale(0.75);
    opacity: 0.7;
    box-shadow: 0 0 0 7px rgba(64, 249, 155, 0);
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-red);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.nav-toggle__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle__text {
  font-family: var(--font-heading);
}

.nav {
  background: var(--color-deep);
  border-top: 1px solid rgba(241, 250, 238, 0.12);
  border-bottom: 1px solid rgba(241, 250, 238, 0.12);
  position: relative;
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red) 72%, var(--color-gold) 72%, var(--color-gold) 100%);
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
}

.nav__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.nav__inner::after {
  content: "";
  flex: 1 1 auto;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.55), rgba(230, 57, 70, 0));
  margin-left: 12px;
}

.nav__link {
  display: inline-block;
  padding: 13px 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-cream);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
  color: var(--color-gold);
}

.nav__link[aria-current="page"] {
  background: var(--color-red);
  color: var(--color-cream);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.nav__slash {
  color: var(--color-red);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  user-select: none;
}

.ticker {
  background: var(--color-brown);
  border-bottom: 3px solid var(--color-red);
}

.ticker__inner {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 42px;
}

.ticker__label {
  display: flex;
  align-items: center;
  padding: 0 16px 0 14px;
  background: var(--color-red);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%);
}

.ticker__viewport {
  flex: 1;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker__viewport::-webkit-scrollbar {
  display: none;
}

.ticker__list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 4px;
  width: max-content;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.ticker__team {
  color: var(--color-cream);
  font-weight: 600;
}

.ticker__score {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-gold);
}

.ticker__divider {
  color: var(--color-red);
  font-weight: 900;
}

.ticker__update {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-neon);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.site-footer {
  position: relative;
  margin-top: auto;
  background:
    repeating-linear-gradient(-45deg, rgba(241, 250, 238, 0.02) 0 2px, transparent 2px 14px),
    var(--color-deep);
  color: var(--color-smoke);
}

.site-footer__frame {
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-red) 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}

.site-footer__inner {
  padding-top: 64px;
  padding-bottom: 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px 40px;
}

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

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__inner {
    padding-top: 48px;
  }
}

.site-footer__brand .brand {
  margin-bottom: 18px;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.site-footer__slogan {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-smoke);
}

.site-footer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(244, 162, 97, 0.25);
}

.site-footer__title::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--color-red);
  flex-shrink: 0;
}

.site-footer__list {
  display: grid;
  gap: 6px;
}

.site-footer__list a {
  display: inline-block;
  padding: 3px 0;
  font-size: 14px;
  color: var(--color-smoke);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__list a::before {
  content: "› ";
  color: var(--color-red);
  font-weight: 900;
  margin-right: 4px;
}

.site-footer__list a:hover {
  color: var(--color-cream);
  transform: translateX(4px);
}

.site-footer__item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-smoke);
  margin-bottom: 8px;
}

.site-footer__item a {
  color: inherit;
}

.site-footer__item a:hover {
  color: var(--color-cream);
}

.site-footer__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-smoke);
  opacity: 0.85;
  line-height: 1.7;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 250, 238, 0.12);
  font-size: 13px;
  color: var(--color-smoke);
}

.site-footer__icp a {
  color: inherit;
}

.site-footer__icp a:hover {
  color: var(--color-cream);
}

@media (max-width: 560px) {
  .site-footer__bottom {
    margin-top: 36px;
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--color-red);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.scroll-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--color-gold);
  color: var(--color-deep);
}

.scroll-top__text {
  font-family: var(--font-heading);
}

@media (max-width: 560px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    padding: 10px 12px;
  }
  .scroll-top__text {
    display: none;
  }
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 40px 0;
}

.section--divider {
  border-top: 1px solid rgba(241, 250, 238, 0.1);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }
  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.display-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.section-title__index {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.5em;
  color: var(--color-red);
}

.section-title__line {
  flex: 1;
  align-self: center;
  height: 2px;
  min-width: 40px;
  margin-left: 4px;
  background: linear-gradient(90deg, var(--color-red), transparent);
}

.section__note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-smoke);
  max-width: 260px;
  text-align: right;
}

@media (max-width: 640px) {
  .section__note {
    text-align: left;
  }
}

.aside-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1.8;
  color: var(--color-smoke);
  text-transform: uppercase;
  max-width: 220px;
}

@media (min-width: 861px) {
  .aside-note--vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  border: 2px solid rgba(241, 250, 238, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--primary {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-cream);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.btn--primary:hover {
  background: #d32f3c;
  border-color: #d32f3c;
  color: var(--color-cream);
}

.btn--ghost {
  border-color: rgba(244, 162, 97, 0.6);
  color: var(--color-gold);
}

.btn--ghost:hover {
  background: rgba(244, 162, 97, 0.08);
}

.btn--block {
  display: flex;
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-gold);
  color: var(--color-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.badge--red {
  background: var(--color-red);
  color: var(--color-cream);
}

.badge--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  clip-path: none;
}

.panel {
  background: var(--color-deep);
  padding: 28px;
  border: 1px solid rgba(241, 250, 238, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

@media (max-width: 920px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(241, 250, 238, 0.14);
}

.meta-row dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
  text-transform: uppercase;
  padding-top: 3px;
}

.meta-row dd {
  font-size: 14px;
  color: var(--color-cream);
}

@media (max-width: 560px) {
  .meta-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  background: var(--color-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(241, 250, 238, 0.12);
  color: rgba(241, 250, 238, 0.88);
}

.data-table tr:nth-child(even) td {
  background: rgba(11, 19, 43, 0.35);
}

.data-table .data-table__version {
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-weight: 700;
}

.score-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--color-deep);
  border: 1px solid rgba(241, 250, 238, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.score-card__team {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-cream);
}

.score-card__team:last-of-type {
  text-align: right;
}

.score-card__score {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.score-card__status {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-neon);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-smoke);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumbs a {
  color: var(--color-smoke);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

.breadcrumbs__separator {
  color: var(--color-red);
  font-weight: 900;
  margin: 0 2px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-cream);
}

.prose {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(241, 250, 238, 0.86);
}

.prose p {
  margin-bottom: 18px;
}

.prose strong {
  color: var(--color-cream);
}

.prose a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(244, 162, 97, 0.4);
  text-underline-offset: 4px;
}

.prose a:hover {
  text-decoration-color: var(--color-gold);
}

.prose h2,
.prose h3 {
  font-family: var(--font-heading);
  color: var(--color-cream);
  text-transform: uppercase;
  margin: 36px 0 14px;
}

.prose h2 {
  font-size: 26px;
  letter-spacing: 0.03em;
}

.prose h3 {
  font-size: 20px;
}

.prose ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.prose ul li {
  list-style: square;
  margin-bottom: 6px;
}

.prose ul li::marker {
  color: var(--color-red);
}

.figure {
  position: relative;
  overflow: hidden;
  background: var(--color-deep);
  aspect-ratio: 16 / 9;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.figure--portrait {
  aspect-ratio: 4 / 5;
}

.figure--wide {
  aspect-ratio: 21 / 9;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.figure:hover img {
  transform: scale(1.04);
}

.figure__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 6px 12px;
  background: rgba(11, 19, 43, 0.88);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-cream);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header__meta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    border-top-width: 0;
  }

  .nav[data-open] {
    display: block;
  }

  .nav::after {
    display: none;
  }

  .nav__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav__inner::after {
    display: none;
  }

  .nav__link {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(241, 250, 238, 0.08);
    font-size: 16px;
  }

  .nav__link[aria-current="page"] {
    background: transparent;
    color: var(--color-gold);
    clip-path: none;
    border-left: 4px solid var(--color-red);
    padding-left: 12px;
  }

  .nav__slash {
    display: none;
  }

  .ticker__update {
    display: none;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
