/* Contador regresivo */
.countdown {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: rgba(11, 12, 15, 0.6);
  border: 1px solid rgba(254, 250, 177, 0.3);
  border-radius: 1rem;
  min-width: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  background: rgba(11, 12, 15, 0.75);
  border-color: rgba(254, 250, 177, 0.5);
  transform: translateY(-2px);
}

.countdown-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(254, 250, 177, 0.5), 0 4px 40px rgba(0, 0, 0, 0.8);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 231, 201, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

