.tickets-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.ticket-btn {
  background: #222;
  border: 2px solid #ffd90077;
  border-radius: 10px;
  padding: 14px 0;
  text-align: center;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffd900;
  width: 90px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.ticket-btn:hover {
  background: #ffd90033;
  transform: scale(1.05);
}
.ticket-comprado {
  background: #555 !important;
  color: #ccc !important;
  border-color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none; /* evita interacción */
  box-shadow: inset 0 0 8px #000;
}
