/* winnerPopup.css */
#winnerPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.winner-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  animation: popUp 0.5s ease-out;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes popUp {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.winner-icon {
  font-size: 50px;
  color: gold;
  animation: shine 1s infinite;
}

@keyframes shine {
  0%, 100% {
    transform: scale(1);
    color: gold;
  }
  50% {
    transform: scale(1.2);
    color: orange;
  }
}
