
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #222;
  font-family: 'Press Start 2P', cursive;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.game-container {
  width: 90%;
  height: 70vh;
  max-width: 400px;
  max-height: 600px;
  margin: 0 auto 150px;
  position: relative;
  top: 25px;
  border: 1px solid #fff;
  box-shadow: 0 0 10px 5px #fff;
  background-color: #000;
  overflow: hidden;
}

.paddle {
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 3%;
  background-color: #0ff;
  box-shadow: 0 0 10px 5px #0ff;
  transition: background-color 0.3s, box-shadow 0.3s; /* Add a transition for smooth color change */
}

.paddle.dull {
  background-color: #0ff;
  box-shadow: none;
}

.ball {
  position: absolute;
  top: 0;
  left: 0;
  width: 8%;
  height: 5%;
  border-radius: 50%;
  background-color: #f0f;
  box-shadow: 0 0 10px 5px #f0f;
}

.timer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 96px;
  font-family: 'Orbitron', sans-serif;
  color: white;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff;
}


.circle {
  border-radius: 50%;
}
.play-button {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #0ff;
  color: #000;
  border: none;
  border-radius: 50px;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  box-shadow: 0 0 10px 5px #00ff00;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button:hover {
  background-color: #00ff00;
  box-shadow: 0 0 20px 10px #00ff00;
  transform: scale(1.1);
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.game-over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  text-align: center;
  display: none;
  z-index: 100;
}
