/* Custom Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Radar Animation */
@keyframes pingSlow {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping-slow {
  animation: pingSlow 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Text Stroke Effects */
.text-stroke-white {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.text-stroke-gold {
  -webkit-text-stroke: 2px rgba(212, 175, 55, 0.5);
  color: transparent;
}

/* 3D Perspective for Cards */
.perspective-1000 {
  perspective: 1000px;
}

/* Graph Animation Classes */
.graph-bar {
  transform-origin: bottom;
  transform: scaleY(0);
}

.graph-animate .graph-bar {
  transform: scaleY(1);
}

.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }

html {
  scroll-behavior: smooth;
}