/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  color: #fff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content {
  text-align: center;
  padding: 2rem;
}

/* Heading Styles */
h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h1 span {
  color: #a020f0;
  text-shadow: 0 0 20px #a020f0, 0 0 40px #a020f0, 0 0 80px #a020f0;
  animation: neon-glow 2s ease-in-out infinite;
}

@keyframes neon-glow {
  0%, 100% {
    text-shadow: 0 0 20px #a020f0, 0 0 40px #a020f0, 0 0 80px #a020f0;
  }
  50% {
    text-shadow: 0 0 10px #a020f0, 0 0 20px #a020f0, 0 0 40px #a020f0;
  }
}

/* Game Styles */
.game-container {
  margin-top: 2rem;
}

.circle-container {
  width: 300px;
  height: 300px;
  position: relative;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: #a020f0;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.2);
}

.score-container {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #a020f0;
  text-shadow: 0 0 5px #a020f0;
}
