body {
  background: rgb(96, 185, 245);
  font-family: "Comic Sans MS", "Poppins", sans-serif;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.4);
}

img {
  width: 130px;
  height: 130px;
  transition: transform 0.3s ease;
}

.winner {
  transform: scale(1.2) rotate(-5deg);
  animation: glow 1s ease-in-out 2;
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 10px gold); }
  50% { filter: drop-shadow(0 0 25px gold); }
}

.hidden { display: none; }

#result {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#playerImage {
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
