/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 12px;
    height: 12px;
    background: rgba(76, 175, 80, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.mouse-follower.hover {
    width: 30px;
    height: 30px;
    background: rgba(76, 175, 80, 0.2);
}

.mouse-follower.click {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
}

/* Sticky button effect */
.mouse-follower.sticky {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .mouse-follower {
        display: none;
    }
} 