/**
 * Liquid Effects - Click Ripples
 * Simple click ripple effect without custom cursor
 */

/* Click Ripple Effect */
.liquid-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleExpand 1s ease-out forwards;
    z-index: 9999;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3.75);
        /* Reduced by 75% from original 15 - very subtle ripple */
        opacity: 0;
    }
}

/* Performance Optimizations */
.liquid-ripple {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .liquid-ripple {
        display: none;
    }
}