.countdown-wrapper {
  margin: 1rem 0;
  text-align: center;
}

.countdown-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #333;
}

.countdown-timer {
  font-family: 'Courier New', monospace;
  font-weight: bold;
}

/* Formato completo */
.countdown-full {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-segment {
  
  border-radius: 8px;
  padding: 1rem;
  min-width: 80px;
  text-align: center;
}
.countdown-separator {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: end;
  height: 100px;
  line-height: 1;
  margin-bottom: 20px;
}
.countdown-number {
  display: block;
  font-size: 4.5rem;
  color: #000;
  font-weight: 600;
}

.countdown-label {
  display: block;
    font-size: 1.5rem;
    color: #bb3511;
    margin-top: 0.5rem;
    text-transform: lowercase;
    font-family: ruda;
    font-weight: 500;
}

/* Formato compacto */
.countdown-compact {
  font-size: 2rem;
  color: #007bff;
  letter-spacing: 2px;
}

.countdown-compact span {
  display: inline-block;
  min-width: 2ch;
}

/* Formato mínimo */
.countdown-minimal {
  font-size: 1.5rem;
  color: #007bff;
}

.countdown-minimal span {
  margin-right: 0.5rem;
}

/* Mensaje de expirado */
.countdown-expired {
  font-size: 1.25rem;
  color: #dc3545;
  font-weight: bold;
  padding: 1rem;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .countdown-full {
    gap: 0.5rem;
  }
  
  .countdown-segment {
    min-width: 60px;
    padding: 0.5rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-compact {
    font-size: 1.5rem;
  }
}