:root {
  --bg: #0d1017;
  --surface: #151a24;
  --surface-2: #1d2532;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #a6b1c2;
  --accent: #26d9a5;
  --accent-2: #ffcc45;
  --hot: #ff5d73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(38, 217, 165, 0.11), transparent 20rem),
    linear-gradient(180deg, rgba(255, 93, 115, 0.04), transparent 42%);
  pointer-events: none;
  transition: background 180ms ease;
}

.motion-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.grid-scan {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(900px) rotateX(62deg) translateY(12%);
  animation: gridDrift 16s linear infinite;
}

.light-trail,
.pixel-spark {
  position: absolute;
  display: block;
}

.light-trail {
  width: 46vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  filter: drop-shadow(0 0 14px rgba(38, 217, 165, 0.42));
  opacity: 0.42;
  animation: trailSweep 8s ease-in-out infinite;
}

.trail-one {
  left: -18vw;
  top: 20vh;
}

.trail-two {
  right: -20vw;
  top: 68vh;
  background: linear-gradient(90deg, transparent, var(--hot), #9ad8ff, transparent);
  animation-delay: -3.2s;
}

.pixel-spark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent-2);
  box-shadow: 0 0 16px rgba(255, 204, 69, 0.48);
  animation: sparkFloat 7s ease-in-out infinite;
}

.spark-one {
  left: 8vw;
  top: 34vh;
}

.spark-two {
  right: 13vw;
  top: 18vh;
  width: 14px;
  height: 14px;
  background: var(--hot);
  animation-delay: -2.4s;
}

.spark-three {
  left: 58vw;
  bottom: 12vh;
  background: #9ad8ff;
  animation-delay: -4.6s;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 0 5vw;
  background: rgba(13, 16, 23, 0.88);
  border-bottom: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background:
    linear-gradient(#000, #000) top / 100% 1px no-repeat,
    linear-gradient(#000, #000) bottom / 100% 1px no-repeat,
    rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 25px;
  color: #34f7b5;
  letter-spacing: 0;
  text-shadow:
    0 0 10px rgba(52, 247, 181, 0.42),
    0 0 22px rgba(52, 247, 181, 0.2);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07100d;
  animation: brandPulse 3.6s ease-in-out infinite;
}

.top-nav {
  display: flex;
  gap: 10px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(18px, 1.42vw, 23px);
  font-weight: 900;
}

.top-nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  isolation: isolate;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.top-nav a span {
  transform: translateY(2px);
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(165, 38, 52, 0.72), rgba(255, 93, 115, 0.9), rgba(190, 45, 66, 0.76));
  opacity: 0;
  transform: translateY(0) scaleX(0.42);
  transition: opacity 180ms ease, transform 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  color: var(--accent-2);
  transform: translateY(0);
  text-shadow: 0 0 14px rgba(255, 204, 69, 0.28);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.top-nav a.is-active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.top-nav:hover a.is-active:not(:hover)::after {
  opacity: 0;
  transform: translateY(0) scaleX(0.42);
}

.subscribe-btn,
.primary-link,
.secondary-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.subscribe-btn {
  min-height: 38px;
  padding: 0 16px;
  background: var(--text);
  color: #0d1017;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 247, 251, 0.2);
}

main {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.page-section {
  scroll-margin-top: 96px;
}

#release {
  margin-bottom: 58vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 132px);
  padding: 52px 0 36px;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
  animation: titleRise 760ms ease both;
}

.eyebrow,
.category {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  animation: titleRise 760ms ease 120ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(38, 217, 165, 0.18);
}

.primary-link {
  background: var(--accent);
  color: #06130f;
  border-color: transparent;
}

.secondary-link {
  color: var(--text);
}

.hero-art {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(38, 217, 165, 0.19), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(255, 93, 115, 0.17), transparent 24%),
    linear-gradient(145deg, #141a25, #080a0f);
  animation: panelFloat 6.5s ease-in-out infinite;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art::before {
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 48%, transparent 55% 100%);
  transform: translateX(-110%);
  animation: glassSweep 5.6s ease-in-out infinite;
}

.hero-art::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  animation: gridPulse 3.2s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  left: -72px;
  top: -64px;
  width: 190px;
  height: 190px;
  border-color: rgba(38, 217, 165, 0.42);
  animation: orbitSpin 16s linear infinite;
}

.ring-two {
  right: -84px;
  bottom: -72px;
  width: 230px;
  height: 230px;
  border-color: rgba(255, 204, 69, 0.32);
  animation: orbitSpin 21s linear reverse infinite;
}

.screen {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(38, 217, 165, 0.12), rgba(255, 204, 69, 0.07)), #111822;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  animation: screenGlow 3.8s ease-in-out infinite;
}

.screen-main {
  left: 10%;
  top: 12%;
  width: 70%;
  aspect-ratio: 16 / 10;
}

.screen-side {
  right: 7%;
  bottom: 23%;
  width: 34%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.12) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.12) 49% 51%, transparent 52%),
    #182231;
  animation-delay: -1.4s;
}

.hud-line {
  position: absolute;
  left: 9%;
  top: 12%;
  width: 48%;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform-origin: left;
  animation: hudLoad 2.4s ease-in-out infinite;
}

.hud-line.short {
  top: 20%;
  width: 28%;
  background: var(--accent-2);
}

.crosshair {
  position: absolute;
  left: 48%;
  top: 45%;
  width: 70px;
  height: 70px;
  border: 2px solid var(--hot);
  border-radius: 50%;
  animation: targetPulse 2.2s ease-in-out infinite;
}

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

.crosshair::before {
  left: 50%;
  top: -16px;
  width: 2px;
  height: 102px;
}

.crosshair::after {
  left: -16px;
  top: 50%;
  width: 102px;
  height: 2px;
}

.controller {
  position: absolute;
  left: 18%;
  bottom: 11%;
  display: grid;
  grid-template-columns: repeat(4, 18px);
  gap: 10px;
  padding: 28px 38px;
  border-radius: 8px;
  background: #232d3b;
  transform: rotate(-4deg);
  animation: controllerTap 2.8s ease-in-out infinite;
}

.controller span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: buttonBlink 1.8s ease-in-out infinite;
}

.controller span:nth-child(2),
.controller span:nth-child(4) {
  background: var(--hot);
}

.ticker {
  display: flex;
  gap: 18px;
  align-items: center;
  overflow-x: auto;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}

.ticker span {
  animation: tickerGlow 4s ease-in-out infinite;
}

.ticker span:nth-child(3) {
  animation-delay: -1.3s;
}

.ticker span:nth-child(4) {
  animation-delay: -2.6s;
}

.ticker strong {
  color: var(--hot);
}

.content-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.85fr);
  gap: 24px;
  margin-top: 34px;
}

.latest-section .section-heading {
  margin-bottom: 14px;
}

.latest-section .content-grid {
  margin-top: 24px;
}

.lead-story,
.side-panel,
.news-card,
.section-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lead-story:hover,
.side-panel:hover,
.news-card:hover,
.section-block:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 217, 165, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
}

.story-visual,
.card-image {
  min-height: 240px;
  background-color: var(--surface-2);
}

.visual-raid {
  position: relative;
  background:
    linear-gradient(135deg, rgba(38, 217, 165, 0.2), transparent 48%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 18px),
    #202938;
  background-size: auto, 42px 42px, auto;
  animation: visualPan 9s linear infinite;
}

.badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #07100d;
  font-weight: 900;
}

.story-body {
  padding: 28px;
}

.story-body h2,
.section-heading h2,
.side-panel h2 {
  margin: 6px 0 12px;
  line-height: 1.18;
}

.story-body p:not(.category),
.news-card p:not(.category),
.release-list,
.match-row {
  color: var(--muted);
}

.meta {
  margin-top: 22px;
  color: #d0d8e4;
  font-size: 13px;
}

.side-panel {
  padding: 24px;
}

.trend-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 22px;
}

.trend-list li::marker {
  color: var(--accent-2);
  font-weight: 900;
}

.trend-list a:hover {
  color: var(--accent);
}

.section-block {
  margin-top: 34px;
  padding: 26px;
}

.section-block.compact {
  margin-top: 0;
}

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

.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-strip {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(38, 217, 165, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(255, 93, 115, 0.1), transparent 42%),
    var(--surface);
}

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

.guide-card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29, 37, 50, 0.78);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -44% 38%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 204, 69, 0.28), transparent 62%);
  animation: guideGlow 4.8s ease-in-out infinite;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 69, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.guide-card span {
  display: inline-grid;
  width: 38px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #06130f;
  font-weight: 900;
}

.guide-card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.guide-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.news-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.news-card:hover::before {
  transform: translateX(110%);
}

.news-card .category,
.news-card h3,
.news-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.news-card .category {
  margin-top: 18px;
}

.news-card h3 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.news-card p:not(.category) {
  margin-bottom: 54px;
}

.score {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 46px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-2);
  color: #171307;
  font-weight: 900;
}

.visual-rpg {
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 204, 69, 0.42), transparent 12%),
    linear-gradient(135deg, transparent 38%, rgba(255, 255, 255, 0.12) 39% 42%, transparent 43%),
    #263142;
  animation: visualPulse 5s ease-in-out infinite;
}

.visual-racing {
  background:
    linear-gradient(110deg, transparent 18%, rgba(255, 93, 115, 0.55) 19% 25%, transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 12px, transparent 12px 24px),
    #20222d;
  background-size: auto, 48px 100%, auto;
  animation: racingLines 1.8s linear infinite;
}

.visual-indie {
  background:
    radial-gradient(circle at 24% 36%, var(--accent) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 54%, var(--hot) 0 8%, transparent 9%),
    linear-gradient(135deg, rgba(255, 204, 69, 0.28), transparent),
    #273044;
  animation: visualPulse 4.6s ease-in-out infinite reverse;
}

.match-list,
.release-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-row,
.release-list li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  transition: background 180ms ease, padding-left 180ms ease;
}

.match-row:hover,
.release-list li:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 10px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.match-row strong,
.release-list span {
  color: var(--text);
}

.match-row em,
.release-list strong {
  color: var(--accent-2);
  font-style: normal;
  font-size: 13px;
}

.release-list time {
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  width: min(1180px, 90vw);
  margin: 42px auto 0;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: rgba(166, 177, 194, 0.58);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand strong {
  color: rgba(244, 247, 251, 0.78);
  font-size: 20px;
  font-weight: 900;
}

.footer-brand span {
  font-size: 12px;
  color: rgba(166, 177, 194, 0.54);
}

.footer-info {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  gap: 44px;
}

.footer-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-panel h2 {
  margin: 0 0 14px;
  color: rgba(244, 247, 251, 0.72);
  font-size: 14px;
  line-height: 1.2;
}

.footer-list {
  display: grid;
  gap: 3px;
  margin: 0;
}

.footer-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.18;
}

.footer-list dt {
  color: rgba(38, 217, 165, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.footer-list dd {
  margin: 0;
  color: rgba(212, 219, 231, 0.62);
  font-size: 12px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-phone {
  margin-top: 2px;
  color: rgba(255, 204, 69, 0.78);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.footer-mail {
  margin-top: 9px;
  color: rgba(212, 219, 231, 0.58);
  font-size: 12px;
  word-break: break-all;
}

.footer-phone:hover,
.footer-mail:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    font-size: 19px;
  }

  .site-footer,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-grid,
  .two-column,
  .lead-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 340px;
  }

  .card-row {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .top-nav {
    gap: 8px;
  }

  .top-nav a {
    min-height: 44px;
    padding: 0 12px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .section-heading,
  .site-footer {
    display: block;
  }

  .footer-brand {
    margin-bottom: 18px;
  }

  .footer-panel {
    padding: 0;
  }

  .footer-info {
    display: grid;
    gap: 24px;
  }

  .footer-list div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
  }

  .footer-phone {
    font-size: 19px;
  }

  .match-row,
  .release-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes gridDrift {
  from { transform: perspective(900px) rotateX(62deg) translateY(12%); }
  to { transform: perspective(900px) rotateX(62deg) translateY(calc(12% + 58px)); }
}

@keyframes trailSweep {
  0%, 100% { transform: translateX(0) rotate(-8deg); opacity: 0.18; }
  45%, 55% { transform: translateX(42vw) rotate(-8deg); opacity: 0.78; }
}

@keyframes sparkFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.38; }
  50% { transform: translate3d(32px, -46px, 0) rotate(45deg); opacity: 0.9; }
}

@keyframes brandPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(38, 217, 165, 0); }
  50% { box-shadow: 0 0 28px rgba(38, 217, 165, 0.45); }
}

@keyframes titleRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glassSweep {
  0%, 42% { transform: translateX(-110%); }
  62%, 100% { transform: translateX(110%); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.48; }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg) translateX(8px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(8px) rotate(-360deg); }
}

@keyframes screenGlow {
  0%, 100% { box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38); }
  50% { box-shadow: 0 28px 80px rgba(38, 217, 165, 0.18); }
}

@keyframes hudLoad {
  0%, 100% { transform: scaleX(0.46); }
  50% { transform: scaleX(1); }
}

@keyframes targetPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.74; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes controllerTap {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-7px); }
}

@keyframes buttonBlink {
  0%, 100% { filter: brightness(0.9); }
  50% { filter: brightness(1.4); }
}

@keyframes tickerGlow {
  0%, 100% { color: var(--muted); }
  50% { color: #f4f7fb; }
}

@keyframes visualPan {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 84px 84px, 0 0; }
}

@keyframes visualPulse {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.25) brightness(1.1); }
}

@keyframes racingLines {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 48px 0, 0 0; }
}

@keyframes guideGlow {
  0%, 100% { transform: translateX(-16px); opacity: 0.34; }
  50% { transform: translateX(18px); opacity: 0.72; }
}
