/* Promo Ticket Floating Notification */
.promo-ticket-float {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 99999;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(91,33,182,0.18), 0 1.5px 0 #ede9fe;
  padding: 0;
  min-width: 320px;
  max-width: 90vw;
  animation: promoTicketPop 0.5s cubic-bezier(.7,-0.2,.5,1.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes promoTicketPop {
  0% { opacity: 0; transform: translate(-50%, -60%) scale(0.7); }
  80% { opacity: 1; transform: translate(-50%, -48%) scale(1.05); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.promo-ticket {
  background: linear-gradient(135deg, #ede9fe 0%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px #e0e0f6;
  padding: 24px 32px 18px 32px;
  margin: 0;
  text-align: center;
  position: relative;
  min-width: 260px;
}
.promo-ticket .ticket-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #5b21b6;
  margin-bottom: 8px;
}
.promo-ticket .ticket-code {
  font-size: 2.1rem;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  color: #d90429;
  letter-spacing: 2px;
  margin: 10px 0 8px 0;
  background: #fff;
  border-radius: 8px;
  padding: 6px 18px;
  display: inline-block;
  box-shadow: 0 1.5px 0 #ede9fe;
}
.promo-ticket .ticket-info {
  font-size: 1rem;
  color: #4b0082;
  margin-bottom: 10px;
}
.promo-ticket .ticket-btn-copy {
  background: #5b21b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
}
.promo-ticket .ticket-btn-copy:hover {
  background: #43149c;
}
.promo-ticket .ticket-valid {
  font-size: 0.95rem;
  color: #059669;
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .promo-ticket-float { min-width: 90vw; }
  .promo-ticket { padding: 18px 8vw 12px 8vw; }
  .promo-ticket .ticket-code { font-size: 1.3rem; padding: 5px 10px; }
}
