.cursor-glow {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 90 !important;
    width: 195px;
    height: 195px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-500px, -500px, 0);
    background: radial-gradient(
        circle,
        rgba(82, 241, 172, .14) 0%,
        rgba(57, 231, 170, .09) 20%,
        rgba(95, 133, 255, .055) 42%,
        transparent 70%
    );
    filter: blur(5px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
    transition: opacity .28s ease, filter .22s ease;
}

.cursor-glow.is-visible {
    opacity: .9;
}

.cursor-glow.is-interactive {
    filter: blur(3px) saturate(1.2);
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
    .cursor-glow {
        display: none !important;
    }
}
