#nav-home,
.nav-link#nav-home,
.nav-link.active#nav-home {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

#nav-demand {
  position: relative;
  color: #ffffff !important;
  font-weight: 800;
  background: linear-gradient(135deg, #ff3b3b 0%, #b81d24 100%);
  box-shadow: 0 0 18px rgba(255, 210, 70, 0.55);
  animation: sxv-demand-bounce 0.7s cubic-bezier(0.22, 1.4, 0.36, 1) 1,
              sxv-demand-glow 1.6s ease-in-out 3;
}

#nav-demand:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #ff5555 0%, #e50914 100%);
  box-shadow: 0 0 22px rgba(255, 214, 80, 0.75);
}

@keyframes sxv-demand-bounce {
  0% { transform: scale(1) translateY(0); }
  35% { transform: scale(1.12) translateY(-5px); }
  60% { transform: scale(0.96) translateY(0); }
  80% { transform: scale(1.06) translateY(-2px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes sxv-demand-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 214, 80, 0.35); }
  50% { box-shadow: 0 0 22px rgba(255, 220, 90, 0.95), 0 0 36px rgba(229, 9, 20, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  #nav-demand { animation: none; }
}
