/* Modern Minimalist CSS resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Warm Premium Off-White Palette */
  --bg-color: #f7f5f0;
  --text-primary: #1c1b1a;
  --text-secondary: #7c7a75;
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.countdown-container {
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: premiumFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.countdown-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 200; /* Ultra light, elegant weight */
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.number {
  font-weight: 300; /* Slightly heavier than label for focus */
}

.days-label {
  font-weight: 200;
  color: var(--text-secondary);
}

/* Premium smooth entry animation */
@keyframes premiumFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
