body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #222; /* Dark background for contrast */
  color: white;
  font-family: Arial, sans-serif;
}

canvas {
  border: 2px solid white;
  background-color: black; /* Game area background */
  cursor: crosshair; /* Crosshair cursor for aiming */
}

#scoreboard {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

#gameOverOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  z-index: 1000;
}

#gameOverOverlay.hidden {
  display: none;
}

#gameOverOverlay button {
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  background-color: white;
  color: black;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
}