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

html, body {
  width: 100%;
  height: 100%;
  background: #0a0710;
  overflow: hidden;
  font-family: "Segoe UI", system-ui, sans-serif;
}

#stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  /* пастельный дримкор-светящийся бордюр */
  image-rendering: pixelated;
  background: #14101e;
  box-shadow: 0 0 80px rgba(180, 150, 255, 0.25),
              0 0 8px rgba(255, 200, 230, 0.4);
  max-width: 100vw;
  max-height: 100vh;
  cursor: none;
}

.hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(235, 220, 255, 0.55);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 0 12px rgba(180, 150, 255, 0.6);
}
