* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #05060a;
  color: #ffffffcc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  overflow: hidden;
}

#hud-top,
#hud-bottom {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 10;
}

#hud-top {
  top: 18px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffffcc;
}

#hud-bottom {
  bottom: 26px;
  font-size: 32px;
  font-weight: 500;
  color: #ffffffee;
  text-shadow: 0 0 12px #000000aa;
  transition: transform 0.12s ease-out;
}

#game {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
}