:root {
  --void: #02050b;
  --ink: #05070d;
  --navy: #061c69;
  --blue: #0057ff;
  --blue-hot: #1b75ff;
  --slime: #39ff14;
  --acid: #e9ff27;
  --red: #ff2d2d;
  --white: #f4f7ff;
  --chrome: #bfc8d9;
  --chrome-dark: #536176;
  --cyan: #00eaff;
  --shadow: rgba(0, 0, 0, 0.78);
  --pressure: 42;
  --section-width: min(1440px, calc(100% - 40px));
  --display: "Archivo Black", Impact, sans-serif;
  --condensed: "Teko", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--slime) #051039;
  scrollbar-width: thin;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 87, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 15% 10%, rgba(0, 87, 255, 0.35), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(57, 255, 20, 0.12), transparent 25%),
    #020816;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  font-family: var(--mono);
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: -5;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(118deg, transparent 0 96px, rgba(57, 255, 20, 0.025) 97px 99px),
    linear-gradient(180deg, rgba(1, 6, 18, 0.1), rgba(1, 3, 9, 0.7));
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  color: #00120b;
  background: var(--slime);
}

.section-shell {
  position: relative;
  z-index: 2;
  width: var(--section-width);
  margin-inline: auto;
}

.boot-screen {
  position: fixed;
  z-index: 9999;
  right: 18px;
  bottom: 18px;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.boot-screen.is-finished {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
}

.boot-window {
  width: min(360px, calc(100vw - 36px));
  padding: 5px;
  color: #111;
  border: 2px solid #fff;
  background: linear-gradient(180deg, #eee 0%, #a7b6cf 100%);
  box-shadow: 0 0 0 3px #0c53d9, 12px 14px 0 rgba(0, 0, 0, 0.35);
}

.boot-title,
.window-titlebar {
  color: #fff;
  background: linear-gradient(180deg, #2e7cff 0%, #0754de 9%, #0039a6 88%, #0d6cf1 100%);
}

.boot-title {
  padding: 8px 10px;
  font-family: Tahoma, Arial, sans-serif;
  font-weight: 700;
}

.boot-copy {
  padding: 16px 18px 10px;
  font-family: var(--mono);
  font-weight: 700;
}

.boot-track {
  height: 24px;
  margin: 0 18px;
  overflow: hidden;
  border: 2px inset #d8d8d8;
  background: #fff;
}

.boot-track span {
  display: block;
  width: 0;
  height: 100%;
  background: repeating-linear-gradient(90deg, #28db09 0 12px, #b8ffab 13px 15px);
}

.boot-count {
  padding: 8px 18px 18px;
  text-align: right;
  font-weight: 700;
}

#packetField {
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  contain: strict;
  pointer-events: none;
}

.crt-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  contain: strict;
  pointer-events: none;
  opacity: 0.09;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
}

.tube-network {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pipe {
  position: absolute;
  display: block;
  height: 64px;
  opacity: 0.58;
  border: 8px ridge #6d7f9a;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.32) 35px 38px, transparent 39px 73px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(0, 87, 255, 0.5) 28%, rgba(0, 5, 20, 0.78) 55%, rgba(57, 255, 20, 0.52));
  box-shadow: inset 0 0 14px #00143e, 0 0 28px rgba(0, 87, 255, 0.45);
  transform-origin: center;
}

.pipe::after {
  position: absolute;
  inset: 16px 0;
  content: "";
  border-radius: inherit;
  background: repeating-linear-gradient(90deg, transparent 0 70px, var(--slime) 71px 84px, transparent 85px 140px);
  filter: drop-shadow(0 0 8px var(--slime));
  animation: packet-slide 4s linear infinite;
}

.pipe-one {
  top: 124px;
  right: -180px;
  width: 760px;
  transform: rotate(-12deg);
}

.pipe-two {
  top: 760px;
  left: -210px;
  width: 820px;
  transform: rotate(13deg);
}

.pipe-three {
  top: 47%;
  right: -320px;
  width: 960px;
  transform: rotate(83deg);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(410px, 1.4fr) minmax(230px, 0.7fr);
  align-items: stretch;
  min-height: 88px;
  padding: 8px 18px;
  border-top: 2px solid #edf4ff;
  border-bottom: 5px ridge #72829b;
  background:
    linear-gradient(180deg, rgba(22, 32, 52, 0.97), rgba(4, 9, 18, 0.98)),
    #080d17;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.72);
}

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

.brand-emblem-shell {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border: 4px ridge #fff;
  border-radius: 9px;
  background:
    linear-gradient(rgba(57, 255, 20, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.12) 1px, transparent 1px),
    radial-gradient(circle, #07348c, #020817 72%);
  background-size: 10px 10px, 10px 10px, auto;
  box-shadow: inset 0 0 12px #000, 0 0 16px rgba(57, 255, 20, 0.55);
  transform: perspective(80px) rotateY(-4deg);
}

.brand-emblem-shell::after {
  position: absolute;
  height: 2px;
  content: "";
  inset: 5px 5px auto;
  background: var(--slime);
  box-shadow: 0 0 7px var(--slime);
}

.brand-emblem {
  width: 95%;
  height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.55));
}

.brand-word {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(180deg, #fff 0 34%, #b8c0ce 35% 52%, #fff 53% 62%, #667185 63% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(3px 3px 0 #101722) drop-shadow(-1px -1px 0 #fff);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-style: italic;
  letter-spacing: -0.09em;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-word b {
  color: var(--slime);
  -webkit-text-fill-color: var(--slime);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.65);
}

.brand-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slime);
  box-shadow: 0 0 12px var(--slime);
  animation: blink 1.3s steps(2) infinite;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 3px ridge #67758a;
  border-radius: 7px;
  background: linear-gradient(180deg, #07112c, #020713);
}

.main-nav a {
  position: relative;
  display: grid;
  flex: 1;
  min-width: 0;
  place-items: center;
  padding: 0 15px;
  border-right: 1px solid #536176;
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease;
}

.main-nav a:last-child {
  border-right: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #00130b;
  outline: none;
  background: var(--slime);
}

.chrome-button {
  margin-left: 14px;
  border: 4px outset #cfdae8;
  border-radius: 10px;
  background: linear-gradient(180deg, #efffbf 0%, #79ff3a 15%, #1ecb00 48%, #0c8d00 53%, #34ef08 100%);
  box-shadow: inset 0 0 0 2px #054c00, 0 0 14px rgba(57, 255, 20, 0.35);
  color: #041103;
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chrome-button:active {
  border-style: inset;
}

.warning-rail {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-block: 4px ridge #8693a6;
  background: #170000;
  box-shadow: inset 0 0 18px #000;
}

.warning-loop {
  display: flex;
  width: max-content;
  padding: 8px 0 7px;
  color: #ff3c27;
  text-shadow: 0 0 8px #ff1b00;
  animation: marquee 22s linear infinite;
  font-family: var(--mono);
  font-size: clamp(0.76rem, 1.45vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.warning-loop span {
  margin-right: 70px;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 3vw, 52px);
  min-height: calc(100vh - 137px);
  padding-block: clamp(40px, 5vw, 78px) 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.error-badge,
.year-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 2px outset #d9dfeb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error-badge {
  color: #fff;
  background: linear-gradient(#ff3d2c, #9a0800);
}

.year-chip {
  color: var(--slime);
  border-color: #3266bb;
  background: #031231;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(4rem, 7.2vw, 7.65rem);
  font-style: normal;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #0c1d48, 9px 9px 0 rgba(0, 0, 0, 0.55);
}

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

.hero h1 em {
  margin-top: 0.12em;
  color: transparent;
  background: linear-gradient(180deg, #eaffdf 0%, #70ff2b 45%, #0ec700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  -webkit-text-stroke: 1px #134e00;
}

.hero h1 strong {
  margin-top: 0.1em;
  color: transparent;
  background: linear-gradient(180deg, #fffbd5 0%, #ffed00 42%, #ff9b00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px #5b2500;
}

.hero-declaration {
  max-width: 650px;
  margin: 28px 0 0;
  color: #e9efff;
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-declaration span {
  color: var(--slime);
}

.hero-signal {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 30px;
  gap: 13px;
  max-width: 610px;
  min-height: 84px;
  align-items: center;
  margin-top: 24px;
  padding: 7px 12px 7px 7px;
  border: 3px outset #dce7f5;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(0, 87, 255, 0.35), transparent 44%),
    #050d1f;
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.48), inset 0 0 0 2px #213a68;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.hero-signal:hover,
.hero-signal:focus-visible {
  border-color: var(--slime);
  outline: 2px solid var(--slime);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.hero-signal img {
  width: 72px;
  height: 68px;
  object-fit: contain;
  border: 2px inset #557099;
  background:
    linear-gradient(rgba(57, 255, 20, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.11) 1px, transparent 1px),
    #03102a;
  background-size: 9px 9px;
  filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.5));
}

.hero-signal span,
.hero-signal small,
.hero-signal b,
.hero-signal em {
  display: block;
  min-width: 0;
}

.hero-signal small {
  color: #7990b6;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-signal b {
  overflow: hidden;
  color: var(--slime);
  font-family: var(--condensed);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: 0.055em;
  line-height: 1;
  text-overflow: ellipsis;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
  white-space: nowrap;
}

.hero-signal em {
  overflow: hidden;
  color: #d5deed;
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-signal > i {
  color: var(--acid);
  font-size: 1.65rem;
  font-style: normal;
}

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

.xp-button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px 7px;
  border: 4px outset #eef4ff;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--condensed);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 5px 7px 0 rgba(0, 0, 0, 0.55);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.xp-button:hover,
.xp-button:focus-visible {
  filter: saturate(1.25) brightness(1.12);
  outline: 2px solid var(--acid);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.xp-button:active {
  border-style: inset;
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.55);
}

.xp-button-primary {
  color: #001b00;
  background: linear-gradient(180deg, #e7ffd8 0%, #69ff25 12%, #12c700 48%, #079000 52%, #4dff13 100%);
}

.xp-button-secondary {
  color: #07142c;
  background: linear-gradient(180deg, #fff 0%, #d8e3f2 49%, #9badc5 52%, #f0f5fb 100%);
}

.button-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 2px inset #dce8de;
  border-radius: 50%;
  background: #061f08;
  color: var(--slime);
  font-size: 0.75rem;
}

.chrome-panel {
  border: 4px ridge #bac4d3;
  border-radius: 7px;
  background: linear-gradient(145deg, #182238, #02050b 55%);
  box-shadow: inset 0 0 0 2px #35445d, 10px 12px 0 rgba(0, 0, 0, 0.42), 0 0 24px rgba(0, 87, 255, 0.28);
}

.modem-panel {
  display: grid;
  grid-template-columns: 94px 1fr 1.35fr;
  gap: 14px;
  align-items: center;
  max-width: 620px;
  min-height: 102px;
  margin-top: 30px;
  padding: 12px;
}

.modem-icon {
  position: relative;
  height: 66px;
  border: 4px outset #d7dce5;
  border-radius: 6px;
  background: linear-gradient(145deg, #d9dee6, #788499);
  transform: perspective(180px) rotateX(10deg);
}

.modem-icon::before {
  position: absolute;
  top: 15px;
  right: 10px;
  left: 10px;
  height: 5px;
  content: "";
  background: #09111d;
  box-shadow: 0 9px 0 #222b36;
}

.modem-icon span {
  position: relative;
  top: 43px;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--slime);
  box-shadow: 0 0 6px var(--slime);
}

.modem-status small,
.packet-counter small {
  display: block;
  color: var(--slime);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.modem-status > b {
  display: block;
  margin-top: -2px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.8rem;
}

.modem-lights {
  display: flex;
  gap: 11px;
  margin-top: 3px;
}

.modem-lights i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slime);
  box-shadow: 0 0 8px var(--slime);
  animation: blink 1.1s steps(2) infinite;
}

.modem-lights i:nth-child(2) { animation-delay: 0.2s; }
.modem-lights i:nth-child(3) { animation-delay: 0.5s; }
.modem-lights i:nth-child(4) { animation-delay: 0.8s; }
.modem-lights i.red { background: var(--red); box-shadow: 0 0 8px var(--red); }

.packet-counter {
  min-width: 0;
  padding: 10px;
  border: 2px inset #68778c;
  background: #001d08;
  text-align: right;
}

.packet-counter b {
  display: block;
  overflow: hidden;
  color: var(--slime);
  text-overflow: clip;
  text-shadow: 0 0 8px var(--slime);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  white-space: nowrap;
}

.video-column {
  position: relative;
  z-index: 4;
}

.video-window {
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, #ccd4df, #57657b 18%, #101a2d 32%, #79879a 100%);
}

.window-titlebar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 6px 7px 6px 12px;
  border: 2px solid #8bb9ff;
  font-family: Tahoma, Arial, sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
}

.window-titlebar.compact {
  min-height: 40px;
  font-size: 0.82rem;
}

.file-icon {
  color: var(--acid);
}

.window-controls {
  display: flex;
  gap: 5px;
  margin-left: auto;
}

.window-controls span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px outset #d7e4ff;
  border-radius: 3px;
  background: linear-gradient(180deg, #5fa1ff, #0752d7);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.window-controls .close {
  background: linear-gradient(180deg, #ff9c76, #e21b08);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 7px 6px 0;
  border: 5px inset #8b99ab;
  background: #000;
}

.video-stage iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border: 0;
}

.video-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(57, 255, 20, 0.28), transparent 28%),
    linear-gradient(135deg, #00288f, #030611 63%, #153f00);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: contrast(1.28) saturate(1.2) hue-rotate(8deg);
}

.poster-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(57, 255, 20, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 9, 30, 0.9), transparent 65%);
  background-size: 28px 28px, 28px 28px, auto;
}

.poster-kicker,
.poster-title {
  position: absolute;
  left: 7%;
  color: var(--slime);
  text-align: left;
  text-shadow: 3px 3px 0 #001100, 0 0 13px var(--slime);
}

.poster-kicker {
  top: 10%;
  font-size: clamp(0.62rem, 1.2vw, 0.95rem);
  letter-spacing: 0.1em;
}

.poster-title {
  top: 21%;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.play-orb {
  position: absolute;
  top: 50%;
  left: 61%;
  display: grid;
  width: clamp(74px, 8vw, 112px);
  height: clamp(58px, 6vw, 82px);
  place-items: center;
  border: 3px outset #ffb9b3;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff4033, #d60000);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.42), 0 0 26px rgba(255, 0, 0, 0.7);
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.video-poster:hover .play-orb,
.video-poster:focus-visible .play-orb {
  transform: translate(-50%, -50%) scale(1.08);
}

.fake-player-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  margin: 0 6px 6px;
  padding: 8px 12px;
  border: 3px outset #e7edf6;
  background: linear-gradient(180deg, #f0f3f6, #9ba9bb);
  color: #071326;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.72rem;
}

.fake-control {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px outset white;
  border-radius: 50%;
  background: linear-gradient(#fff, #a2aebe);
}

.fake-progress {
  position: relative;
  flex: 1;
  height: 11px;
  border: 2px inset #ccd4df;
  background: #121722;
}

.fake-progress i {
  position: absolute;
  width: 74%;
  inset: 1px auto 1px 1px;
  background: linear-gradient(90deg, #08a800, var(--slime));
  box-shadow: 0 0 7px var(--slime);
  transform: scaleX(0.378);
  transform-origin: left center;
  animation: progress-pulse 5s ease-in-out infinite alternate;
}

.fake-volume {
  color: #0b7c00;
  font-size: 1.3rem;
}

.original-sticker {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: -2.2%;
  display: grid;
  width: clamp(100px, 11vw, 150px);
  aspect-ratio: 1;
  place-items: center;
  padding: 18px;
  color: #102000;
  background: var(--acid);
  clip-path: polygon(50% 0%, 60% 8%, 73% 3%, 80% 15%, 94% 15%, 94% 30%, 100% 40%, 92% 50%, 100% 62%, 91% 72%, 92% 87%, 77% 87%, 70% 100%, 58% 92%, 46% 100%, 36% 91%, 21% 95%, 18% 80%, 4% 76%, 9% 62%, 0 52%, 9% 41%, 3% 28%, 17% 22%, 20% 7%, 35% 11%);
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, 0.6));
  font-family: var(--condensed);
  line-height: 0.9;
  text-align: center;
  transform: rotate(7deg);
}

.original-sticker b,
.original-sticker span,
.original-sticker strong {
  display: block;
}

.original-sticker b { font-size: clamp(1rem, 1.8vw, 1.5rem); }
.original-sticker span { font-size: clamp(0.65rem, 1vw, 0.86rem); }
.original-sticker strong { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }

.video-caption {
  margin: 17px 0 0;
  color: #91a8cd;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.video-caption span { color: var(--slime); }

.spec-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: calc(100% - 28px);
  margin: 0 auto;
  padding: 7px;
  border: 5px ridge #7f8da2;
  border-radius: 8px;
  background: linear-gradient(#0c1d55, #041033);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6);
}

.spec-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  min-height: 82px;
  align-items: center;
  padding: 11px 14px;
  border: 3px outset #d9e5f6;
  background: linear-gradient(180deg, #1269ed, #042f8c 50%, #061b4c 51%, #0d3d9a);
}

.spec-icon {
  display: grid;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px outset #e9f2ff;
  border-radius: 50%;
  background: #061334;
  color: var(--acid);
  font-family: Arial Black, sans-serif;
  font-size: 1.35rem;
}

.spec-card small {
  align-self: end;
  color: #aac6ff;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.spec-card b {
  align-self: start;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(0.82rem, 1.25vw, 1.12rem);
  letter-spacing: 0.04em;
}

.status-live {
  background: linear-gradient(180deg, #145300, #082800 50%, #041600 51%, #0e3d00);
}

.status-live .spec-icon,
.status-live b { color: var(--slime); }

.universe-section {
  padding-block: clamp(80px, 9vw, 135px);
}

.universe-rules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}

.universe-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 22px 20px 26px;
  border: 4px outset #cbd5e4;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.22), transparent 46%),
    linear-gradient(180deg, #111d35, #030711);
  box-shadow: 7px 9px 0 rgba(0, 0, 0, 0.55);
}

.universe-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--blue) 0 22px, var(--cyan) 23px 27px);
}

.official-card {
  border-color: #eaffd2;
  background:
    radial-gradient(circle at 50% 28%, rgba(57, 255, 20, 0.2), transparent 35%),
    linear-gradient(180deg, #102d10, #020703);
}

.official-card::before { background: repeating-linear-gradient(90deg, var(--slime) 0 22px, var(--acid) 23px 27px); }

.universe-glyph {
  position: relative;
  display: grid;
  width: 100%;
  height: 150px;
  margin-bottom: 23px;
  overflow: hidden;
  place-items: center;
  border: 3px inset #67768c;
  background:
    linear-gradient(rgba(0, 234, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 234, 255, 0.1) 1px, transparent 1px),
    #040d21;
  background-size: 18px 18px;
}

.emblem-glyph img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(57, 255, 20, 0.55));
}

.packet-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.packet-glyph i {
  width: 33px;
  height: 23px;
  border: 3px outset #cfffca;
  background: var(--slime);
  box-shadow: 0 0 13px var(--slime);
  transform: skewX(-12deg);
  animation: packet-hop 1.2s steps(2) infinite;
}

.packet-glyph i:nth-child(2) { width: 46px; height: 31px; animation-delay: 0.25s; }
.packet-glyph i:nth-child(3) { animation-delay: 0.5s; }

.truck-glyph {
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 54, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 54, 44, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 58%, rgba(255, 40, 31, 0.2), transparent 52%),
    #040817;
  background-size: 18px 18px, 18px 18px, auto, auto;
}

.truck-glyph::before {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 2;
  padding: 3px 6px 2px;
  border: 1px solid rgba(255, 89, 79, 0.75);
  content: "TESLA_UNIT // DENIED";
  color: #ff7168;
  background: rgba(45, 0, 4, 0.78);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.cybertruck-art {
  width: min(96%, 360px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 7px rgba(255, 47, 37, 0.6));
}

.cyber-glow {
  fill: none;
  stroke: rgba(255, 47, 37, 0.78);
  stroke-width: 11;
  filter: blur(8px);
}

.cyber-body {
  stroke: #ffb2ac;
  stroke-width: 2.5;
  stroke-linejoin: bevel;
}

.cyber-facet {
  fill: rgba(67, 0, 8, 0.34);
  stroke: rgba(255, 169, 163, 0.34);
  stroke-width: 1.5;
}

.cyber-facet-top { fill: rgba(255, 214, 211, 0.24); }
.cyber-facet-side { fill: rgba(92, 0, 10, 0.42); }
.cyber-facet-bed { fill: rgba(255, 111, 101, 0.22); }

.cyber-window {
  stroke: #7eeeff;
  stroke-width: 2;
  stroke-linejoin: bevel;
}

.cyber-window-split {
  fill: none;
  stroke: #070b19;
  stroke-width: 4;
}

.cyber-door {
  fill: none;
  stroke: rgba(255, 178, 173, 0.46);
  stroke-width: 1.5;
}

.cyber-bumper { fill: #250308; }
.cyber-light { fill: var(--acid); filter: drop-shadow(0 0 5px var(--acid)); }
.cyber-tail { fill: #ff2920; filter: drop-shadow(0 0 5px #ff2920); }

.cyber-wheel {
  stroke: #ff9f98;
  stroke-width: 3;
}

.cyber-hub {
  fill: #090c15;
  stroke: #7888a4;
  stroke-width: 3;
}

.cyber-slash {
  fill: none;
  stroke: rgba(255, 29, 20, 0.96);
  stroke-width: 9;
  stroke-linecap: square;
  filter: drop-shadow(0 0 5px #ff1108);
}

.cyber-slash-cross {
  opacity: 0.42;
  stroke-width: 5;
}

.clog-glyph {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-content: center;
  justify-content: center;
  padding: 25px;
  background:
    radial-gradient(circle, rgba(255, 45, 45, 0.3), transparent 52%),
    #170200;
}

.clog-glyph i {
  width: 35px;
  height: 22px;
  border: 2px outset #fff0b9;
  background: linear-gradient(180deg, var(--acid), #ff7400);
  box-shadow: 0 0 9px #ff351e;
  transform: rotate(var(--jam-angle, 4deg));
}

.clog-glyph i:nth-child(2) { --jam-angle: -17deg; width: 51px; }
.clog-glyph i:nth-child(3) { --jam-angle: 21deg; height: 34px; }
.clog-glyph i:nth-child(4) { --jam-angle: -6deg; width: 44px; }
.clog-glyph i:nth-child(5) { --jam-angle: 13deg; }

.universe-card > small {
  color: #7189af;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}

.universe-card h3 {
  margin: 2px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.official-card h3 { color: var(--slime); }
.truck-card h3,
.clog-card h3 { color: #ff493a; }

.universe-card p {
  margin: 0;
  color: #8ea1c1;
  font-size: 0.72rem;
  line-height: 1.65;
}

.lore-section,
.clog-section,
.pair-section,
.final-section {
  padding-block: clamp(90px, 11vw, 170px);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--slime);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.section-index::after {
  width: min(220px, 32vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--slime), transparent);
}

.lore-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.lore-headline > span {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lore-headline h2,
.clog-copy h2,
.final-copy h2 {
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 #08256a;
}

.lore-copy {
  overflow: hidden;
}

.lore-copy-inner {
  padding: clamp(24px, 4vw, 48px);
  color: #dbe7ff;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  line-height: 1.85;
}

.lore-copy-inner p:first-child {
  margin-top: 0;
}

.lore-copy-inner p:last-of-type {
  color: #9db2d8;
}

.terminal-line {
  margin-top: 28px;
  padding: 14px 16px;
  border: 2px inset #62728c;
  background: #001708;
  color: var(--slime);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.terminal-line span { color: var(--acid); }

.quote-marquee {
  display: flex;
  width: calc(100vw + 80px);
  margin-top: 90px;
  margin-left: calc((100vw - 100%) / -2 - 40px);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 20px 40px 15px;
  color: #001500;
  background: var(--slime);
  box-shadow: 0 0 0 7px #00133e, 0 0 0 10px var(--slime);
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.9vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1;
  transform: rotate(-1.2deg);
  white-space: nowrap;
}

.quote-marquee i { font-style: normal; }

.clog-window {
  overflow: hidden;
}

.danger-title {
  background: linear-gradient(180deg, #ff4d3d, #a40900 48%, #6f0400 52%, #d41a0d);
}

.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.live-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slime);
  box-shadow: 0 0 8px var(--slime);
  animation: blink 0.8s steps(2) infinite;
}

.clog-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(rgba(0, 87, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1), transparent 28%),
    #030915;
  background-size: 25px 25px, 25px 25px, auto, auto;
}

.micro-label {
  margin: 0;
  color: var(--slime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.clog-copy h2 {
  color: transparent;
  background: linear-gradient(180deg, white, #a5b6ce 62%, #55627a);
  -webkit-background-clip: text;
  background-clip: text;
}

.clog-copy > p:not(.micro-label) {
  max-width: 430px;
  color: #aebddb;
}

.dump-button {
  margin-top: 24px;
  padding: 17px 20px 13px;
  border: 4px outset #ffb9a8;
  background: linear-gradient(#ff573f, #ae0900 48%, #780300 51%, #df1707);
  box-shadow: 6px 7px 0 #000, 0 0 20px rgba(255, 45, 45, 0.42);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.035em;
}

.dump-button:hover,
.dump-button:focus-visible {
  color: #001500;
  outline: 3px solid var(--acid);
  background: var(--slime);
}

.pressure-console {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(24px, 3vw, 50px);
  align-items: center;
}

.gauge-wrap {
  text-align: center;
}

.gauge {
  position: relative;
  display: grid;
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto 17px;
  place-items: center;
  border: 12px ridge #9aa8bc;
  border-radius: 50%;
  background: conic-gradient(from 225deg, var(--slime) 0 calc(var(--pressure) * 2.7deg), #162037 calc(var(--pressure) * 2.7deg) 270deg, #080d17 270deg 360deg);
  box-shadow: inset 0 0 32px #000, 0 0 24px rgba(0, 234, 255, 0.2);
  transform: rotate(0deg);
}

.gauge::after {
  position: absolute;
  width: 4px;
  height: 32%;
  content: "";
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transform: rotate(calc(-135deg + var(--pressure) * 2.7deg)) translateY(-34%);
  transform-origin: bottom center;
}

.gauge-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62%;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 5px inset #8694a7;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #18263d, #02050a 70%);
}

.gauge-inner b {
  color: var(--acid);
  text-shadow: 0 0 11px var(--acid);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.gauge-inner small,
.gauge-label {
  color: #9fb0ce;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.slider-console {
  padding: 22px;
  border: 4px outset #bac5d6;
  background: linear-gradient(150deg, #15223b, #040812 65%);
}

.console-readout {
  margin-bottom: 28px;
  padding: 14px;
  border: 3px inset #52627b;
  background: #001608;
}

.console-readout span,
.slider-console > label {
  display: block;
  color: #85a28e;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.console-readout b {
  display: block;
  overflow: hidden;
  color: var(--slime);
  text-shadow: 0 0 8px var(--slime);
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#pressureSlider {
  width: 100%;
  height: 34px;
  margin-top: 11px;
  accent-color: var(--slime);
  cursor: ew-resize;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #6f83a8;
  font-size: 0.58rem;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 24px;
}

.telemetry-grid div {
  min-width: 0;
  padding: 10px 7px;
  border: 2px inset #62728a;
  background: #07112a;
  text-align: center;
}

.telemetry-grid small {
  display: block;
  color: #7f94b7;
  font-size: 0.52rem;
}

.telemetry-grid b {
  display: block;
  overflow: hidden;
  color: var(--acid);
  font-size: clamp(0.68rem, 1.3vw, 0.85rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-clogged .clog-window {
  animation: danger-shake 0.15s steps(2) 8;
  box-shadow: inset 0 0 0 2px #ff2618, 10px 12px 0 rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 40, 20, 0.55);
}

.pair-window {
  overflow: hidden;
  background: linear-gradient(135deg, #c8d1df, #536278 18%, #071020 42%, #22385c 100%);
}

.pair-titlebar {
  justify-content: space-between;
}

.pair-status {
  margin-left: auto;
  color: var(--acid);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px var(--acid);
}

.pair-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(rgba(0, 87, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 18% 35%, rgba(57, 255, 20, 0.15), transparent 34%),
    #030916;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.pair-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.pair-copy .micro-label {
  margin-bottom: 16px;
  color: var(--red);
}

.pair-copy h2 {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: clamp(8px, 1.4vw, 22px);
  align-items: baseline;
  justify-content: start;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.pair-copy h2 span {
  color: var(--slime);
  text-shadow: 5px 5px 0 #0b3b00, 0 0 20px rgba(57, 255, 20, 0.34);
}

.pair-copy h2 i {
  color: #8da0bd;
  font-style: normal;
}

.pair-copy h2 strong {
  color: var(--red);
  text-shadow: 5px 5px 0 #5f0903, 0 0 20px rgba(255, 45, 45, 0.28);
}

.pair-copy > p:last-child {
  max-width: 720px;
  margin: 25px 0 0;
  color: #d6e2f7;
  font-family: var(--condensed);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.long-panel {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 3vw, 38px);
  border: 5px outset #cad6e8;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 234, 255, 0.19), transparent 34%),
    linear-gradient(160deg, #163984, #030916 68%);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.55), inset 0 0 0 2px #22487f;
  text-align: center;
}

.long-panel small {
  color: #8da6ce;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.long-panel > b {
  margin: 4px 0 18px;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(3.4rem, 5vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(233, 255, 39, 0.35);
}

.long-placeholder-button {
  width: 100%;
  min-height: 58px;
  padding: 11px 15px 8px;
  border: 4px outset #eff6ff;
  color: #001500;
  background: linear-gradient(180deg, #e9ff27, #39ff14);
  box-shadow: 5px 6px 0 #000;
  cursor: pointer;
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.035em;
}

.long-placeholder-button:hover,
.long-placeholder-button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  filter: brightness(1.08);
}

.long-panel > span {
  margin-top: 17px;
  color: #7189b0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.manifesto-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 28px 0 34px;
  border-block: 7px ridge #cbd5e4;
  color: #001400;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    var(--slime);
  background-size: 20px 20px;
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.35);
  transform: rotate(-0.8deg) scale(1.02);
}

.manifesto-topline {
  display: flex;
  justify-content: space-around;
  gap: 26px;
  padding: 8px 30px;
  border-block: 3px solid #001d00;
  font-size: clamp(0.56rem, 1vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.manifesto-copy {
  padding: 22px 20px 0;
  text-align: center;
}

.manifesto-copy span {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(1.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.9;
}

.manifesto-copy strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.8rem, 12.5vw, 12.5rem);
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.final-window {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  padding: clamp(35px, 7vw, 95px);
  background:
    linear-gradient(rgba(0, 87, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(57, 255, 20, 0.21), transparent 34%),
    linear-gradient(135deg, #10265c, #020712 60%);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.final-copy h2 {
  color: transparent;
  background: linear-gradient(180deg, #fff, #b5c2d5 60%, #5f6d83);
  -webkit-background-clip: text;
  background-clip: text;
}

.final-copy > p:not(.micro-label) {
  max-width: 620px;
  color: #a9bad6;
}

.final-status {
  display: grid;
  place-items: center;
  color: var(--slime);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.radar {
  position: relative;
  display: grid;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin-bottom: 18px;
  overflow: hidden;
  place-items: center;
  border: 10px ridge #8390a4;
  border-radius: 50%;
  background:
    linear-gradient(rgba(57, 255, 20, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.18) 1px, transparent 1px),
    repeating-radial-gradient(circle, transparent 0 34px, rgba(57, 255, 20, 0.25) 35px 36px),
    #001708;
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: inset 0 0 30px #000, 0 0 28px rgba(57, 255, 20, 0.24);
}

.radar::before,
.radar::after {
  position: absolute;
  content: "";
  background: rgba(57, 255, 20, 0.4);
}

.radar::before { width: 1px; height: 100%; }
.radar::after { width: 100%; height: 1px; }

.radar i {
  position: absolute;
  width: 50%;
  height: 50%;
  inset: 0 50% 50% 0;
  background: linear-gradient(45deg, transparent 55%, rgba(57, 255, 20, 0.55));
  transform-origin: bottom right;
  animation: radar-spin 3s linear infinite;
}

.radar img {
  position: relative;
  z-index: 2;
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--slime));
}

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px max(22px, calc((100vw - 1440px) / 2));
  border-top: 6px ridge #7f8da1;
  background: #02050b;
}

.footer-brand .brand-word {
  font-size: 2rem;
}

.footer-emblem {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(57, 255, 20, 0.6));
}

.site-footer p {
  margin: 0;
  color: #6f7f9b;
  font-size: 0.66rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a,
.footer-links button {
  padding: 8px 10px;
  border: 1px solid #38558d;
  background: #071431;
  color: #9fb4d9;
  cursor: pointer;
  font-size: 0.58rem;
}

.footer-links a:hover,
.footer-links button:hover { color: var(--slime); border-color: var(--slime); }

.toast {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 15px 18px;
  border: 4px outset #fff;
  background: linear-gradient(#ff4f3a, #a40900);
  box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes packet-slide {
  to { background-position-x: 280px; }
}

@keyframes blink {
  50% { opacity: 0.25; }
}

@keyframes progress-pulse {
  to { transform: scaleX(1); }
}

@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

@keyframes packet-hop {
  50% { transform: translateY(-10px) skewX(-12deg); }
}

@keyframes danger-shake {
  0%, 100% { transform: translate(0); }
  33% { transform: translate(-3px, 2px); }
  66% { transform: translate(3px, -1px); }
}

html.is-scrolling *,
html.is-scrolling *::before,
html.is-scrolling *::after,
.is-motion-paused,
.is-motion-paused *,
.is-motion-paused *::before,
.is-motion-paused *::after {
  animation-play-state: paused !important;
}

html.is-scrolling .crt-overlay {
  opacity: 0.055;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(250px, 0.75fr) minmax(370px, 1.25fr) 185px;
  }

  .header-button { font-size: 0.95rem; }

  .hero {
    grid-template-columns: minmax(330px, 0.8fr) minmax(460px, 1.2fr);
  }

  .hero h1 { font-size: clamp(3.7rem, 7.4vw, 6rem); }
  .universe-rules { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-width: min(100% - 28px, 760px); }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding-inline: 12px;
  }

  .brand-emblem-shell { width: 50px; height: 50px; }
  .brand-word { font-size: 2.25rem; }
  .main-nav { display: none; }
  .header-button { min-width: 160px; margin-left: 8px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 45px;
  }

  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(4rem, 13vw, 7rem); }
  .video-column { margin-top: 10px; }

  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .lore-grid,
  .clog-layout,
  .pair-layout,
  .final-window { grid-template-columns: 1fr; }
  .pressure-console { grid-template-columns: minmax(190px, 0.75fr) minmax(300px, 1.25fr); }
  .final-status { margin-top: 30px; }
  .radar { max-width: 280px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 620px) {
  :root { --section-width: calc(100% - 20px); }

  .site-header { min-height: 64px; }
  .brand { gap: 7px; }
  .brand-emblem-shell { width: 42px; height: 42px; border-width: 2px; }
  .brand-word { font-size: 1.95rem; }
  .brand-led { width: 7px; height: 7px; }
  .header-button { min-width: 134px; padding: 3px 8px; font-size: 0.78rem; }

  .warning-loop { padding-block: 6px; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.4rem); line-height: 0.81; }
  .hero-declaration { margin-top: 22px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .xp-button { width: 100%; min-height: 55px; }
  .modem-panel { grid-template-columns: 74px 0.9fr 1.35fr; gap: 8px; }
  .modem-icon { height: 56px; }
  .packet-counter { padding: 7px; }
  .packet-counter small { font-size: 0.52rem; }
  .packet-counter b { font-size: 0.68rem; }
  .video-window { padding: 3px; }
  .window-titlebar { min-height: 41px; font-size: 0.72rem; }
  .window-controls span { width: 25px; height: 25px; }
  .video-stage { margin-inline: 3px; border-width: 3px; }
  .fake-player-bar { height: 46px; margin-inline: 3px; padding: 5px 7px; }
  .fake-control { width: 27px; height: 27px; }
  .fake-time { display: none; }
  .original-sticker { top: -5%; right: -1%; width: 88px; padding: 12px; }
  .video-caption { font-size: 0.54rem; }
  .spec-strip { grid-template-columns: 1fr; width: calc(100% - 14px); }
  .spec-card { min-height: 70px; }

  .universe-section,
  .lore-section,
  .clog-section,
  .pair-section,
  .final-section { padding-block: 90px; }

  .lore-headline h2,
  .clog-copy h2,
  .final-copy h2 { font-size: clamp(3rem, 15vw, 5.2rem); }

  .lore-copy-inner { padding: 22px; font-size: 0.86rem; }
  .hero-signal { grid-template-columns: 58px minmax(0, 1fr) 20px; gap: 9px; }
  .hero-signal img { width: 58px; height: 58px; }
  .hero-signal em { font-size: 0.48rem; }
  .universe-rules { grid-template-columns: 1fr; }
  .universe-card { min-height: 325px; }
  .quote-marquee { margin-top: 65px; }
  .clog-layout { padding: 22px 16px 27px; }
  .pressure-console { grid-template-columns: 1fr; }
  .gauge { width: 220px; }
  .pair-layout { padding: 25px 18px; }
  .pair-copy h2 {
    grid-template-columns: 1fr;
    gap: 5px;
    font-size: clamp(3.35rem, 17vw, 5.2rem);
    white-space: normal;
  }
  .pair-copy h2 i { display: none; }
  .long-panel { padding: 27px 18px; }
  .manifesto-topline span:nth-child(2) { display: none; }
  .manifesto-copy strong { font-size: 17vw; }
  .final-window { padding: 30px 20px; }
  .site-footer { padding-inline: 20px; }
}

@media (pointer: coarse), (max-width: 760px) {
  #packetField,
  .crt-overlay {
    display: none;
  }

  .hero-signal img,
  .radar img {
    filter: none;
  }

  .pipe::after {
    filter: none;
  }

  .boot-screen {
    right: 12px;
    bottom: 12px;
  }

  .boot-window {
    width: min(330px, calc(100vw - 24px));
  }
}

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