:root {
  --ui-ink: #130d1d;
  --ui-purple: #5f2ab0;
  --ui-purple-dark: #45207f;
  --ui-yellow: #f5d43f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: "VT323", monospace;
  color: #f4ecff;
  background: #f2e4bf;
  overflow: hidden;
}

.game-page {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#fly-game {
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #f0e1ba;
}

.overlay-tip {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(17, 11, 26, 0.72);
  color: #f8f2ff;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.45rem, 1.3vw, 0.6rem);
  line-height: 1.6;
  text-transform: uppercase;
  padding: 6px 8px;
  pointer-events: none;
  z-index: 3;
  text-align: right;
}
