/* основной курсор */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    opacity: 0.5;
    border: 1px solid rgba(255, 210, 190, 0.6);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    mix-blend-mode: lighten;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(255, 200, 180, 0.25);
    will-change: transform;
}

.cursor-ripples {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 9999;
}


.cursor-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(213, 182, 160, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0.07;
    pointer-events: none;
    will-change: transform, opacity;
    animation: rippleAnim 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    box-shadow: 0 0 20px rgba(213, 182, 160, 0.4);
}

/* анимация круга */
@keyframes rippleAnim {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0.07;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.05;
    }
    100% {
        transform: translate(-50%, -50%) scale(4.5);
        opacity: 0;
    }
}
