/* 鼠标点击光晕效果 */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: ripple-animation 0.3s ease-out;
}

/* 左键点击 - 金色光晕 */
.click-ripple.left-click {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8), 0 0 25px rgba(255, 215, 0, 0.4);
}

/* 右键点击 - 红色光晕 */
.click-ripple.right-click {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.4);
}

@keyframes ripple-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
