body {
  margin: 0;
  overflow: hidden;
  background-color: #000;
  font-family: "Orbitron", sans-serif;
  color: #fff;
}
canvas {
  display: block;
}
#ui-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hud {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 0 0 10px #a24cff; /* New Color */
}
#score {
  font-size: 2em;
}
#health-bar-container {
  width: 200px;
  height: 20px;
  border: 2px solid #a24cff; /* New Color */
  border-radius: 10px;
  overflow: hidden;
}
#health-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #be93fd, #a24cff); /* Violet Gradient */
  transition: width 0.2s ease-out;
}
#menu,
#gameOverMenu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: all;
  background: rgba(11, 16, 32, 0.8); /* Darker background */
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #a24cff; /* New Color */
  box-shadow: 0 0 30px #a24cff; /* New Color */
}
#menu h1,
#gameOverMenu h1 {
  font-size: 4em;
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 0 0 20px #a24cff; /* New Color */
}
#menu p,
#gameOverMenu p {
  font-size: 1.2em;
  color: #aaa;
  margin: 20px 0;
}
.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.menu-button {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5em;
  padding: 10px 30px;
  background: transparent;
  border: 2px solid #a24cff; /* New Color */
  color: #a24cff; /* New Color */
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-shadow: 0 0 10px #a24cff; /* New Color */
  text-decoration: none;
  display: inline-block;
}
.menu-button:hover {
  background: #a24cff; /* New Color */
  color: #000;
  box-shadow: 0 0 20px #a24cff; /* New Color */
}
