body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000;
  font-family: "VT323";
  color: #fff;
}

html,
body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

#app {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#game-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#game-container canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

/* Ensure touch events are delivered to the canvas and disable browser gestures */
#game-container,
#game-container canvas {
  touch-action: none;
  -ms-touch-action: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
}

#score {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: "VT323", monospace;
  font-size: 20px;
  color: #fff;
  z-index: 9999;
  pointer-events: none;
}
