/* CUSTOM CURSOR */
.cursor{
  position:fixed;width:12px;height:12px;
  background:var(--red-neon);
  border-radius:50%;
  pointer-events:none;z-index:99999;
  transform:translate(-50%,-50%);
  transition:transform 0.1s ease,width 0.3s,height 0.3s,background 0.3s;
  mix-blend-mode:screen;
}
.cursor-follower{
  position:fixed;width:40px;height:40px;
  border:1px solid rgba(255,26,26,0.4);
  border-radius:50%;
  pointer-events:none;z-index:99998;
  transform:translate(-50%,-50%);
  transition:transform 0.15s ease,width 0.3s,height 0.3s,opacity 0.3s;
}
.cursor.hover{width:20px;height:20px;background:var(--purple-glow);}
.cursor-follower.hover{width:60px;height:60px;border-color:var(--purple-glow);opacity:0.5;}