:root {
  color-scheme: dark;
  background: #000;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #000;
}

body {
  min-height: 100svh;
  color: #fff;
}

.holding-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(1.75rem, 6vw, 3.5rem);
  padding: clamp(1.5rem, 6vw, 4rem) 1rem;
}

.scene {
  position: relative;
  width: min(498px, calc(100vw - 2rem));
  aspect-ratio: 498 / 343;
  isolation: isolate;
}

.scene__image {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.ring-stage {
  position: absolute;
  z-index: 1;
  left: 43.98%;
  top: 48.1%;
  width: 12.05%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.ring-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.wip-message {
  max-width: 34rem;
  margin: 0;
  color: #f8f8f8;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 34rem) {
  .holding-page {
    align-content: center;
    gap: 1.75rem;
  }

  .wip-message {
    max-width: 27rem;
  }
}
