@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
  background-image: url('rcs-logo.jpeg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}


#winner {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  animation: fadeIn 0.6s ease-in-out;
}

.result-animate {
  animation: bounce 0.5s ease-in-out;
  color: #ffe066;
}


.win-glow {
  background: rgba(0, 255, 127, 0.2);
  border-radius: 12px;
  transition: background 0.4s ease-in-out;
}

.lose-glow {
  background: rgba(255, 50, 50, 0.2);
  border-radius: 12px;
  transition: background 0.4s ease-in-out;
}
