#custom-interactive-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s ease, background-color 0.2s ease;
    will-change: top, left, transform;
}

#custom-interactive-cursor.cursor-grow {
    transform: translate(-50%, -50%) scale(6);
    background-color: rgba(0, 0, 0, 0.2);
}