* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%; height: 100%;
  background: #0b0a12;
  overflow: hidden;
  font-family: "Press Start 2P", ui-monospace, monospace;
}
#wrap {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
#game {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #1a2040;
  width: min(100vw, calc(100vh * 384 / 240));
  height: min(calc(100vw * 216 / 384), calc(100vh - 28px));
  box-shadow: 0 0 0 4px #1a1028, 0 0 40px #000;
}
#hint {
  color: #c9c0d8;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.75;
  user-select: none;
}
