*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#countdown-container {
  text-align: center;
  padding: 2rem;
}

#title {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  color: #cccccc;
}

#countdown {
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
}

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

.time-value {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.time-label {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  margin-top: 0.5rem;
}

#target-date {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555555;
  letter-spacing: 0.05em;
}

/* Celebration state */
#countdown-container.celebrated #title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 600;
  color: #f0f0f0;
}

#countdown-container.celebrated #countdown {
  display: none;
}

#countdown-container.celebrated #target-date {
  color: #888888;
  font-size: 1.1rem;
}
