body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.countdown-box {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.zoom-on-scroll {
  transition: transform 0.5s ease-out;
}

.zoom-on-scroll.zoomed {
  transform: scale(1.05);
}

.rotate-on-scroll {
  transition: transform 0.7s ease-out;
}

.rotate-on-scroll.rotated {
  transform: rotate(5deg);
}
