@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

@keyframes pulseNeon {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 153, 0.7),
                0 0 10px rgba(0, 255, 153, 0.6),
                0 0 20px rgba(0, 255, 153, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 153, 0),
                0 0 15px rgba(0, 255, 153, 0.3),
                0 0 25px rgba(0, 255, 153, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 153, 0.7),
                0 0 10px rgba(0, 255, 153, 0.6),
                0 0 20px rgba(0, 255, 153, 0.5);
  }
}

.animate-pulse-custom {
  animation: pulseNeon 2s infinite;
}
