/* CSS Animation for gradient fading effect */
@keyframes gradient-fade {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
    100% {
      opacity: 1;
    }
  }
  
  .fade-gradient {
    animation: gradient-fade 1s ease-in-out forwards;
  }
  
  
  /* Styles for the cursor glow effect */
  .cursor-glow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    mix-blend-mode: screen;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 150, 255, 0.5);
    transition: transform 0.1s ease;
  }
  

  