/* Winner modal — ported from PulseLotteryDeployment/styles.css + pulseprize-app.js */

#winnerModal .modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

#winnerModal .modal-buttons button {
  width: 48%;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

#winnerModal .confirm-btn {
  background: #28a745;
  color: #fff;
}

#winnerModal .cancel-btn {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
}

#winnerModal .modal-content.diamond {
  background: radial-gradient(circle, #666666 0%, #1a1a1a 70%, transparent 100%), linear-gradient(45deg, #333333, #1a1a1a);
  box-shadow: 0 0 30px rgba(153, 153, 153, 0.8);
  border: 2px solid #666666;
  color: #ffd700;
}

#winnerModal .modal-content.golden {
  background: radial-gradient(circle, #ffd700 0%, #ff4d80 40%, transparent 70%), linear-gradient(45deg, #ffd700, #ff4d80);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  border: 2px solid #ffd700;
  color: #000;
}

#winnerModal .modal-content.blue {
  background: radial-gradient(circle, #87CEFA 0%, #E6F0FA 70%, transparent 100%), linear-gradient(45deg, #87CEFA, #E6F0FA);
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.5);
  border: 2px solid #87CEFA;
  color: #1a1a1a;
}

#winnerModal .modal-content.blue #winnerTitle,
#winnerModal .modal-content.blue #winnerMessage {
  display: block;
  width: 100%;
  text-align: center;
  color: #1a1a1a;
}

#winnerModal #winnerMessage {
  font-size: 1.5em;
  margin: 20px 0;
  line-height: 1.6;
}

#winnerModal .winner-demo-note {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  text-align: center;
  opacity: 0.9;
}

#winnerModal .modal-content.diamond .winner-demo-note {
  color: rgba(255, 215, 0, 0.85);
}

#winnerModal .modal-content.golden .winner-demo-note {
  color: rgba(0, 0, 0, 0.75);
}

#winnerModal .modal-content.blue .winner-demo-note {
  color: rgba(26, 26, 26, 0.8);
}

#winnerModal .modal-content.diamond #winnerTitle {
  font-size: 2em;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}
