:root {
  color-scheme: dark;
  --ink: #fff8e8;
  --muted: #b8c9d0;
  --night: #091014;
  --deep: #0d1f25;
  --amber: #ffcc66;
  --mint: #7df0c4;
  --coral: #ff7a6e;
  --line: rgba(255, 248, 232, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 22% 18%, rgba(125, 240, 196, 0.2), transparent 24rem),
    radial-gradient(circle at 80% 76%, rgba(255, 122, 110, 0.18), transparent 26rem),
    linear-gradient(140deg, var(--night), var(--deep) 58%, #132a27);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
}

.notice {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(255, 248, 232, 0.2);
  background: rgba(9, 16, 20, 0.52);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--mint);
  font-family: "Courier New", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.summary {
  width: 100%;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
}

.console {
  display: grid;
  grid-template-columns: 12px 12px 12px 1fr;
  align-items: center;
  gap: 10px;
  width: min(31rem, 100%);
  min-height: 54px;
  margin-top: 34px;
  padding: 14px 16px;
  border: 1px solid rgba(125, 240, 196, 0.26);
  background: rgba(2, 7, 9, 0.72);
  font-family: "Courier New", monospace;
}

.console p {
  min-width: 0;
  margin: 0 0 0 6px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-red {
  background: var(--coral);
}

.dot-yellow {
  background: var(--amber);
}

.dot-green {
  background: var(--mint);
}

.sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star,
.orbit {
  position: absolute;
  display: block;
}

.star {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 28px var(--amber);
  animation: pulse 3.8s ease-in-out infinite;
}

.star-a {
  top: 14%;
  left: 18%;
}

.star-b {
  top: 24%;
  right: 16%;
  width: 7px;
  height: 7px;
  background: var(--mint);
  box-shadow: 0 0 24px var(--mint);
  animation-delay: -1.2s;
}

.star-c {
  right: 28%;
  bottom: 18%;
  width: 12px;
  height: 12px;
  background: var(--coral);
  box-shadow: 0 0 28px var(--coral);
  animation-delay: -2.1s;
}

.star-d {
  bottom: 26%;
  left: 12%;
  width: 6px;
  height: 6px;
  animation-delay: -0.5s;
}

.orbit {
  width: min(62vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 232, 0.16);
  border-radius: 50%;
  animation: drift 18s linear infinite;
}

.orbit-one {
  top: -14%;
  right: -8%;
}

.orbit-two {
  bottom: -18%;
  left: -10%;
  width: min(48vw, 460px);
  animation-duration: 24s;
  animation-direction: reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.85);
    opacity: 1;
  }
}

@keyframes drift {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 620px) {
  body {
    overflow: auto;
  }

  .stage {
    align-items: end;
  }

  .notice {
    padding: 28px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
}

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