.cursor-particle {
    position: fixed;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(0, 240, 255, 0.35);

    pointer-events: none;
    z-index: 999999;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 4px rgba(0, 240, 255, 0.4),
        0 0 10px rgba(0, 240, 255, 0.35),
        0 0 18px rgba(0, 240, 255, 0.25);

    opacity: 0.5;

    transition:
        transform 0.15s linear,
        opacity 0.4s ease;
}