.mouse-cursor-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(600px circle at var(--x) var(--y),
            rgba(0, 255, 136, 0.15),
            transparent 40%);
    mix-blend-mode: screen;
    display: none;
}


.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    left: var(--x);
    top: var(--y);
    box-shadow: 0 0 10px var(--accent-color);
    display: none;
}