/* Main Slider Styles */
.vts-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.vts-slide {
    padding: 15px;
    outline: none;
}

.vts-video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vts-slide:hover .vts-video-thumbnail {
    transform: scale(1.02);
}

.vts-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vts-play-button:hover {
    background-color: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.vts-description {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Add these updates to your existing CSS */

/* Lightbox Styles */
.vts-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.vts-lightbox-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}

.vts-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.vts-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vts-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vts-close:hover {
    color: #ff0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vts-lightbox-content {
        width: 95%;
    }
    
    .vts-close {
        top: -40px;
        font-size: 30px;
    }
}

/* Slick Slider Customizations */
.slick-prev:before, .slick-next:before {
    color: #333;
}

.slick-dots li button:before {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vts-lightbox-content {
        width: 95%;
    }
    
    .vts-play-button {
        width: 60px;
        height: 60px;
    }
    
    .vts-description {
        font-size: 14px;
    }
}