* {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

body {
  
  min-height: 100vh;
  color: #fff;
}



h1 {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080, 0 0 40px #ff0080;
  margin-top: 1rem;
  letter-spacing: 2px;
  font-weight: bold;
  animation: flicker 2s infinite alternate;
}

@keyframes flicker {
  from { text-shadow: 0 0 15px #ff0080, 0 0 30px #ff0080; }
  to { text-shadow: 0 0 30px #00f7ff, 0 0 60px #00f7ff; }
}


#choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 100px;
}

.choice {
  height: 170px;
  width: 170px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.choice:hover {
  transform: scale(1.15) rotate(10deg);
}

img {
  height: 130px;
  width: 130px;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  border: 3px solid transparent;
}

img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px #00f7ff, 0 0 40px #00f7ff;
  filter: brightness(1.3);
  border: 3px solid #00f7ff;
}

.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  font-size: 2rem;
  gap: 3rem;
}

#user-score, #comp-score {
  font-size: 4rem;
  transition: transform 0.3s ease;
}

.score p {
  margin-top: 0.5rem;
}

.msg-container {
  margin-top: 3rem;
}

#msg {
  font-size: 1.5rem;
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


