.cursor-bubble {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    transform: translate(-50%, -50%);
    animation: bubble-float 1s ease-out forwards;
    z-index: 9999;
    mix-blend-mode: screen;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

@keyframes bubble-float {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5) translateY(-20px);
        opacity: 0;
    }
}