.cursor-follower-el {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hide on touch/mobile devices where there is no cursor hover */
@media (hover: none) and (pointer: coarse) {
  .cursor-follower-el {
    display: none !important;
  }
}
