:root {
  --bg: #090b10;
  --bg-soft: #10131a;
  --panel: #141821;
  --panel-light: #1b202b;
  --text: #f6f7fb;
  --muted: #9da5b4;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff9600;
  --orange-soft: #ffb13b;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,.25) 1px, transparent 2px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(9, 11, 16, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.brand-text strong {
  color: var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 36%, rgba(255, 150, 0, .11), transparent 28%),
    linear-gradient(135deg, #0a0c11 0%, #0d1016 60%, #090b10 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9,11,16,.98) 0%, rgba(9,11,16,.88) 42%, rgba(9,11,16,.35) 100%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
}

.hero-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 65%;
  background: linear-gradient(transparent, rgba(255,150,0,.35), transparent);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .25;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  right: 7%;
  top: 14%;
  background: var(--orange);
}

.hero-glow-two {
  width: 200px;
  height: 200px;
  left: 30%;
  bottom: 5%;
  background: #3158ff;
  opacity: .12;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
}

.eyebrow,
.kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

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

.eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  font-weight: 700;
}

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

.hero-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #151515;
}

.button-primary:hover {
  background: var(--orange-soft);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  width: min(100%, 430px);
  aspect-ratio: .88;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015)),
    radial-gradient(circle at 50% 42%, rgba(255,150,0,.11), transparent 42%);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  clip-path: polygon(0 0, 87% 0, 100% 13%, 100% 100%, 13% 100%, 0 87%);
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-card::before {
  inset: 12px;
  border: 1px solid rgba(255,255,255,.06);
  clip-path: inherit;
}

.visual-card::after {
  left: 50%;
  top: 13%;
  bottom: 13%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,150,0,.35), transparent);
}

.visual-topline,
.visual-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4e43;
  box-shadow: 0 0 18px rgba(255,78,67,.7);
}

.visual-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.visual-symbol strong {
  font-size: clamp(5rem, 10vw, 8rem);
  letter-spacing: -.08em;
  text-shadow: 0 0 40px rgba(255,150,0,.2);
}

.symbol-bracket {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 300;
}

.visual-meta {
  gap: 8px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--orange), transparent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .25; transform: scaleY(.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.status-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0f15;
}

.status-inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 40px;
}

.status-inner > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.status-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
}

.status-inner strong {
  color: var(--orange);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

.status-inner p {
  margin: 0;
  color: #c8ced9;
  font-size: 1.08rem;
}

.section {
  padding: 150px 0;
}

.about {
  background: #f1f2f4;
  color: #12151b;
}

.about-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 110px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.section-number {
  margin-top: 8px;
  color: var(--orange);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-weight: 700;
}

.section-heading .kicker {
  margin: 0 0 14px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5.3vw, 5.3rem);
}

.about-content .lead {
  max-width: 720px;
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  margin-top: 46px;
  color: #666e7a;
}

.about-columns p {
  margin: 0;
}

.facts {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.13);
  border-bottom: 1px solid rgba(0,0,0,.13);
}

.fact {
  padding: 24px 20px 24px 0;
}

.fact + .fact {
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,.13);
}

.fact span,
.fact strong {
  display: block;
}

.fact span {
  color: #7a818d;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.fact strong {
  margin-top: 5px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.games {
  background: var(--bg);
}

.games-header {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.games-header > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.section-heading.compact h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.game-card {
  position: relative;
  grid-column: span 3;
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel-light), var(--panel));
  transition: transform .25s ease, border-color .25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,150,0,.5);
}

.game-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255,150,0,.08);
  filter: blur(5px);
}

.game-index {
  position: absolute;
  left: 28px;
  top: 24px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
}

.game-icon {
  position: absolute;
  left: 28px;
  top: 75px;
  width: 74px;
  height: 74px;
  opacity: .78;
}

.crosshair {
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.crosshair::before {
  width: 1px;
  height: 100px;
  left: 36px;
  top: -13px;
}

.crosshair::after {
  width: 100px;
  height: 1px;
  left: -13px;
  top: 36px;
}

.grid-icon {
  background:
    linear-gradient(var(--orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--orange) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: rotate(45deg) scale(.75);
}

.speed-icon {
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: skewX(-22deg);
}

.speed-icon::before,
.speed-icon::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--orange);
  right: 0;
}

.speed-icon::before { width: 54px; top: 24px; }
.speed-icon::after { width: 34px; top: 48px; }

.moon-icon {
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.moon-icon::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  left: 18px;
  top: -10px;
  border-radius: 50%;
  background: var(--panel);
}

.game-card h3 {
  margin: 0 0 10px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
}

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

.game-card-highlight {
  background:
    linear-gradient(145deg, rgba(255,150,0,.97), rgba(235,126,0,.9));
  color: #111;
  border-color: transparent;
}

.game-card-highlight p,
.game-card-highlight .game-index {
  color: rgba(0,0,0,.65);
}

.game-card-highlight .moon-icon {
  border-color: #111;
}

.game-card-highlight .moon-icon::after {
  background: #f18d00;
}

.closing {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,150,0,.14), transparent 32%),
    #0b0e13;
}

.closing-content {
  text-align: center;
}

.closing-mark {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,150,0,.7);
  color: var(--orange);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 700;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.closing p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

.closing h2 {
  margin-top: 13px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.closing a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: var(--orange);
  font-weight: 700;
}

.closing a span {
  font-size: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07090d;
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #717987;
  font-size: .78rem;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-layout,
  .about-layout,
  .games-header {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 55px;
    padding-top: 150px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .visual-card {
    max-width: 380px;
  }

  .about-layout,
  .games-header {
    gap: 50px;
  }

  .game-card {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-wrap {
    height: 72px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: rgba(9,11,16,.97);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-copy > p {
    font-size: .98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .status-inner {
    min-height: 170px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .status-inner > div {
    justify-content: space-between;
  }

  .section {
    padding: 100px 0;
  }

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

  .about-columns {
    gap: 22px;
  }

  .fact + .fact {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.13);
  }

  .game-card {
    grid-column: span 12;
    min-height: 300px;
  }

  .closing {
    min-height: 450px;
  }

  .footer-inner {
    padding: 24px 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* V2: animated HUD / tactical atmosphere */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .72;
  pointer-events: none;
}

.hud-frame {
  position: absolute;
  inset: 106px 34px 38px;
  z-index: 0;
  pointer-events: none;
  opacity: .52;
}

.hud-corner {
  position: absolute;
  width: 42px;
  height: 42px;
}

.hud-corner::before,
.hud-corner::after {
  content: "";
  position: absolute;
  background: rgba(255, 150, 0, .55);
}

.hud-corner::before {
  width: 42px;
  height: 1px;
}

.hud-corner::after {
  width: 1px;
  height: 42px;
}

.hud-corner-tl { left: 0; top: 0; }
.hud-corner-tr { right: 0; top: 0; transform: rotate(90deg); }
.hud-corner-br { right: 0; bottom: 0; transform: rotate(180deg); }
.hud-corner-bl { left: 0; bottom: 0; transform: rotate(270deg); }

.hud-readout {
  position: absolute;
  color: rgba(255,255,255,.35);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hud-readout-left {
  left: 62px;
  top: 0;
}

.hud-readout-right {
  right: 62px;
  bottom: 0;
}

.visual-card {
  overflow: hidden;
  isolation: isolate;
}

.visual-card > *:not(.radar-sweep):not(.terrain) {
  position: relative;
  z-index: 3;
}

.radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 135%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      rgba(255,150,0,.03) 286deg,
      rgba(255,150,0,.25) 330deg,
      transparent 360deg);
  animation: radarSpin 9s linear infinite;
  z-index: 1;
}

.radar-sweep::before,
.radar-sweep::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.radar-sweep::after {
  inset: 34%;
}

@keyframes radarSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.terrain {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -4%;
  height: 48%;
  z-index: 2;
  transform-origin: bottom;
  clip-path: polygon(0 100%, 0 72%, 8% 61%, 16% 76%, 27% 51%, 36% 67%, 47% 38%, 58% 62%, 69% 44%, 80% 70%, 89% 53%, 100% 74%, 100% 100%);
}

.terrain-one {
  background: linear-gradient(to top, rgba(255,150,0,.18), rgba(255,150,0,.02));
  transform: scaleY(.84);
}

.terrain-two {
  bottom: 3%;
  opacity: .55;
  background:
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(255,150,0,.16) 18px),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(255,150,0,.16) 18px);
  clip-path: polygon(0 100%, 0 81%, 10% 69%, 22% 78%, 34% 57%, 43% 74%, 56% 47%, 70% 73%, 82% 58%, 100% 77%, 100% 100%);
  transform: perspective(280px) rotateX(48deg);
  transform-origin: bottom;
}

.terrain-three {
  bottom: 11%;
  opacity: .22;
  border-top: 1px solid var(--orange);
  background: transparent;
  transform: scaleY(.62);
}

.visual-symbol strong {
  animation: symbolPulse 4.5s ease-in-out infinite;
}

@keyframes symbolPulse {
  0%, 100% {
    text-shadow: 0 0 18px rgba(255,150,0,.12);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 42px rgba(255,150,0,.4);
    transform: scale(1.015);
  }
}

.status-dot {
  animation: statusBlink 2.8s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: .48; }
  50% { opacity: 1; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(transparent 49.6%, rgba(255,255,255,.025) 50%, transparent 50.4%);
  background-size: 100% 5px;
  opacity: .18;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.045) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.game-card:hover::after {
  transform: translateX(120%);
}

@media (max-width: 720px) {
  .hud-frame {
    inset: 94px 16px 24px;
  }

  .hud-readout-right,
  .hud-readout-left {
    display: none;
  }
}
