.vt-carousel-wrapper {
    position: relative;
    width: 100%;
}
.vt-swiper {
    padding-bottom: 40px !important;
}
.vt-card {
    background: #fff;
    border-radius: 0; /* No rounded corners anywhere */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vt-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding-top: 0;
    background: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0; /* No rounded corners anywhere */
}
.vt-thumbnail {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* Let clicks pass to wrapper */
}
.vt-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 48px;
    background: rgba(0,0,0,0.5); 
    border-radius: 50%; /* Kept for the play button ONLY */
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none; /* Let clicks pass to wrapper */
}
.vt-play-icon svg {
    width: 48px;
    height: 48px;
    fill: #fff;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}
.vt-play-icon i {
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
.vt-video-wrapper:hover .vt-play-icon {
    background: #e52d27;
    transform: translate(-50%, -50%) scale(1.1);
}
.vt-player-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    display: none;
}
.vt-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.vt-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.vt-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}
.vt-desc {
    margin: 0 0 15px;
    font-size: 14px;
    color: #555;
    flex-grow: 1;
}
.vt-stars {
    font-size: 14px;
}
.swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: #e52d27;
    opacity: 1;
}