:root {
  color-scheme: dark;
  background: #000;
  color: #fff;
  font-family: "Courier New", monospace;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-width: 240px;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 64px 32px;
}
/* A quiet, stepped frame around the title screen. */
body::before {
  content: "";
  position: fixed;
  inset: 20px;
  border: 1px solid #fff;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 16px;
  border: 4px solid #000;
  outline: 1px solid #fff;
  pointer-events: none;
}
.title-screen {
  width: min(100%, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
h1 {
  margin: 48px 0 0;
  width: min(100%, 828px);
  font-size: inherit;
  line-height: 0;
}
.logo {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}
.coming-soon {
  margin: 48px 0 0;
  max-width: 100%;
  line-height: 0;
}
.coming-soon svg {
  display: block;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 144px;
  height: 12px;
}
.ornament::before, .ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}
.ornament span {
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(33.333% 0, 66.667% 0, 66.667% 33.333%, 100% 33.333%, 100% 66.667%, 66.667% 66.667%, 66.667% 100%, 33.333% 100%, 33.333% 66.667%, 0 66.667%, 0 33.333%, 33.333% 33.333%);
}
.ornament-bottom { margin-top: 64px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 600px) {
  body { padding: 48px 28px; }
  body::before { inset: 12px; }
  body::after { inset: 8px; }
  h1 { margin-top: 40px; }
  .coming-soon { margin-top: 36px; width: 192px; }
  .ornament { width: 104px; gap: 12px; }
  .ornament-bottom { margin-top: 44px; }
}
@media (max-height: 500px) and (min-width: 601px) {
  body { padding: 40px; }
  h1 { width: min(100%, 414px); margin-top: 20px; }
  .coming-soon { margin-top: 24px; width: 192px; }
  .ornament-bottom { margin-top: 24px; }
}
@media (forced-colors: active) {
  .ornament { display: none; }
  .coming-soon svg { fill: CanvasText; }
}
