body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  overflow-x: hidden;
}

.font-playfair { 
  font-family: 'Playfair Display', serif; 
}

.gradient-text {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* NAV LINK HOVER EFFECTS */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f1d27a);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #f1d27a !important;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* FLOATING TEXT */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* SPARKLES */
@keyframes sparkle {
  0%,100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  animation: sparkle 2.5s ease-in-out infinite;
}

/* CONFETTI */
@keyframes confetti {
  0% { transform: translateY(-100vh) rotate(0); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFD700;
  animation: confetti linear infinite;
}