/* PlayWin - Jackpot Styles */
/* Estilos do sistema de jackpot */

.jackpot-container {
  background: linear-gradient(135deg, #1a1e3f 0%, #0a0e27 100%);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #d4af37;
  position: relative;
  overflow: hidden;
}

.jackpot-title {
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.jackpot-amount {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  font-family: "Orbitron", monospace;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  animation: pulse 2s infinite;
}

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

/* Explosão de partículas */
.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #d4af37;
  border-radius: 50%;
  animation: explode 1s ease-out forwards;
}

@keyframes explode {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0);
  }
}

.jackpot-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a1e3f 0%, #0a0e27 100%);
  border: 3px solid #d4af37;
  border-radius: 20px;
  padding: 40px;
  z-index: 10000;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
  animation: jackpotWin 1s ease;
}

@keyframes jackpotWin {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
