/*your custom css goes here*/ 

 /* Blink / Bling effect */
   @keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
  }
}

@keyframes sparkle {
  0%, 100% {opacity: 0; transform: scale(0.5) rotate(0deg);}
  50% {opacity: 1; transform: scale(1.2) rotate(45deg);}
}

.sparkle-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #ffcc33, #ff9900);
  color: #fff;
  border: none;
  animation: pulseGlow 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.sparkle-btn:hover {
  transform: scale(1.1);
}

/* Sparkles */
.sparkle-btn::before {
  content: '✨';
  position: absolute;
  font-size: 20px;
  top: -10px;
  left: 50%;
  opacity: 0;
  animation: sparkle 1.5s infinite;
  animation-delay: 0.2s;
  pointer-events: none;
}

.sparkle-btn::after {
  content: '✨';
  position: absolute;
  font-size: 15px;
  bottom: -5px;
  right: 20%;
  opacity: 0;
  animation: sparkle 1.2s infinite;
  animation-delay: 0.6s;
  pointer-events: none;
}