/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 05 2025 | 20:00:38 */
body {
    /* cursor: none;  Hide default cursor — removed to keep arrow visible */
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
/*     z-index: 99999; */
  }

  /* waves */
  .cursor-wave {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    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);
    }
  }