body {
  background: #ffffff !important;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.countdown-container {
  max-width: 900px;
  margin: 0px auto;
  text-align: center;
  padding: 1px;
  background: rgba(173, 216, 230, 0.15); /* very light blue tint for subtle festivity */
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.countdown-title {
  font-size: 48px;
  color: #c00;
  text-shadow: 2px 2px 8px #ffd700;
  margin-bottom: 20px;
}

.countdown-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: #333;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.unit {
  background: rgba(255, 255, 255, 0.9);
  color: #c00;
  padding: 20px 30px;
  border-radius: 15px;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.number {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
}

.label {
  font-size: 24px;
  color: #333;
  margin-top: 10px;
}

/* Light blue falling snowflakes - visible on white background */
.snowflake {
  color: lightblue;
  font-size: 1.8em;
  position: fixed;
  top: -50px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.song-section {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.song-section h2 {
  font-size: 36px;
  color: #c00;
  margin-bottom: 20px;
}

.spotify-embed {
  max-width: 600px;
  width: 100%;
  margin: 30px auto;
  display: block;
}
