.neon-cursor-container{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:9999}.cursor-main{position:fixed;width:12px;height:12px;border-radius:50%;background:#10b981;mix-blend-mode:screen;pointer-events:none;transition:width .2s,height .2s;filter:drop-shadow(0 0 6px rgba(16,185,129,.6));backdrop-filter:blur(4px);animation:cursorPulse 2s infinite}.cursor-main.hover{width:24px;height:24px;background:rgba(16,185,129,.8);animation:cursorHoverPulse 1s infinite}.cursor-trail{position:fixed;width:8px;height:8px;border-radius:50%;background:#34d399;mix-blend-mode:screen;pointer-events:none;opacity:0;transition:opacity .3s ease,transform .3s ease;filter:drop-shadow(0 0 4px rgba(52,211,153,.4))}.cursor-trail.active{opacity:.6;animation:trailFade .5s ease-out forwards}.cursor-glow{position:fixed;width:40px;height:40px;border-radius:50%;background:radial-gradient(circle,rgba(16,185,129,.2) 0,transparent 70%);mix-blend-mode:screen;pointer-events:none;animation:glowPulse 3s infinite}@keyframes cursorPulse{0%{transform:scale(1);filter:drop-shadow(0 0 6px rgba(16,185,129,.6))}50%{transform:scale(1.1);filter:drop-shadow(0 0 10px rgba(16,185,129,.8))}to{transform:scale(1);filter:drop-shadow(0 0 6px rgba(16,185,129,.6))}}@keyframes cursorHoverPulse{0%{transform:scale(1);background:rgba(16,185,129,.8)}50%{transform:scale(1.2);background:#10b981}to{transform:scale(1);background:rgba(16,185,129,.8)}}@keyframes trailFade{0%{opacity:.6;transform:scale(1)}to{opacity:0;transform:scale(.5)}}@keyframes glowPulse{0%{transform:scale(1);opacity:.2}50%{transform:scale(1.5);opacity:.3}to{transform:scale(1);opacity:.2}}