body {
  margin: 0;
  overflow: hidden;  /* Prevent scrolling */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #70c5ce;
}

#gameContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

#gameOverPopup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: none;
}

#finalScore {
  font-size: 24px;
  margin-bottom: 10px;
}

#restartButton, #resumeButton {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ff5722;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

#score {
  position: absolute;
  top: 10px;
  left: 10px;
  color: black;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
}
