.Players_Review {
    padding: 60px 0;
    overflow: hidden;
}

.testimonialSwiper {
    padding: 30px 5px 50px;
    font-family: Exo !important;
    width: 100%;
}

.testimonialSwiper .swiper-slide {
    transition: all 0.5s ease;
}

.testimonial_card {
    position: relative;
    background: #2b2b2b;
    border-radius: 14px;
    padding: 25px;
    min-height: 160px;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Active Slide */
.swiper-slide-active .testimonial_card {
    background: #000;
    box-shadow: 0px 0px 10px #FFFFFF85;
    clip-path: none;
}

/* Side Slides */
.swiper-slide-prev .testimonial_card {
    transform: perspective(1000px) rotateY(-25deg) scale(0.9);
    transform-origin: left center;
}

.swiper-slide-next .testimonial_card {
    transform: perspective(1000px) rotateY(25deg) scale(0.9);
    transform-origin: right center;
}

.swiper-slide-prev .testimonial_card,
.swiper-slide-next .testimonial_card {
    opacity: 0.75;
}

.Players_Review .swiper-3d {
    perspective: none;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent linear-gradient(90deg, #D40000 0%, #AB0000 28%, #0000008C 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    aspect-ratio: 1/1;
}

.testimonial_card .swiper_title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial_card .swiper_review {
    color: #DCDCDC;
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile */
@media (min-width:0px) and (max-width: 767px) {

    .testimonial_card {
        padding: 15px;
    }

    .testimonial_card .swiper_title {
        font-size: 22px;
    }

    .testimonial_card .swiper_review {
        font-size: 14px;
    }
}