/* davidnacey.cloud — pixel-art space flyer */

:root {
  --bg: #0a0a1f;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: var(--bg);
  overflow: hidden;
  font-family: "Courier New", monospace;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
}

#game-shell {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  display: block;
  /* Rendered at native resolution in JS; no CSS upscaling needed. */
  cursor: pointer;
}

#hint {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  letter-spacing: 1px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#hint.hidden {
  opacity: 0;
}
