html { scroll-behavior: smooth; }

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.hero-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 45%, #fb923c 100%);
}

.confetti-dot {
  position: absolute;
  border-radius: 50%;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fffaf3; }
::-webkit-scrollbar-thumb { background: #ec4899; border-radius: 4px; }
