body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  overflow: hidden;
  cursor: crosshair;
}
h1 {
  font-family: 'Orbitron', sans-serif;
  margin-top: 50px;
}
canvas.phaser-canvas {
  border: 2px solid #fff;
  display: block;
  margin: 0 auto;
}
canvas.three-canvas {
  border: none !important;
}
button {
  /* Hide any default test buttons; they’re available for debugging if needed */
  display: none;
}
/* HUD buttons – placed absolutely on top of the game container */
#muteButton, #reloadButton {
  position: absolute;
  top: 10px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
  display: block;
}
#reloadButton {
  right: 10px;
}
#muteButton {
  right: 50px;
  display: none;
}
#gameContainer {
  position: relative;
  width: 800px;
  height: 600px;
  margin: 0 auto;
}
.notice, .notice a {
    color: dimgray;
}