.angie-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    will-change: transform;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.angie-cursor-follower.hover-active {
    width: 30px !important;
    height: 30px !important;
    background-color: var(--hover-color) !important;
    opacity: 0.5 !important;
    border-radius: 50% !important; /* Keeps the circle shape */
}
