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

html, body {
  width: 100%;
  height: 100%;
  background: #000011;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gameCanvas {
  display: block;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* Querformat-Warnung (Phones im Landscape) */
#rotate-hint {
  display: none;
  position: fixed;
  inset: 0;
  background: #000011;
  color: #22eeff;
  font: bold 18px monospace;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
  padding: 20px;
  line-height: 1.8;
}

@media (orientation: landscape) and (max-height: 500px) {
  #rotate-hint { display: flex; }
}
