/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 10 2025 | 18:40:04 */
/* Hide the custom cursor container */
    .custom-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 48px;
      height: 48px;
      pointer-events: none;
      z-index: 99999;
    }
    
    .cursor-img {
      min-width: 220px !important;
      height: 110px;
      object-fit: contain;
      pointer-events: none;
    }
    
    /* Glowing waves */
    .cursor-wave {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: 0.9;
      transform: translate(-50%, -50%) scale(1.8);
      filter: blur(60px);
      animation: waveFade 1.6s forwards;
      z-index: 9999;
    }
    
    @keyframes waveFade {
      0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
      }
      50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.4);
      }
      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
      }
    }