.countdown-section {
  padding: 2rem;
  background: var(--glass-bg, rgba(13, 17, 23, 0.6));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.countdown-title {
  font-size: 1.25rem;
  color: #aaa;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-family: 'Roboto Mono', monospace;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-block .time {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.time-block .label {
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .countdown-title {
    font-size: 1rem;
  }

  #countdown-timer {
    gap: 1rem;
  }

  .time-block .time {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-section {
    padding: 1.5rem;
  }

  #countdown-timer {
    gap: 0.75rem;
    flex-wrap: wrap; /* Allow wrapping on very small screens */
  }

  .time-block {
    min-width: 60px;
  }

  .time-block .time {
    font-size: 2rem;
  }

  .time-block .label {
    font-size: 0.75rem;
  }
}
