
        /* Video Preview Styles */
        .video-preview-wrapper {
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .video-preview-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        /* Play Button Overlay */
        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .play-button {
            transition: transform 0.2s ease;
            opacity: 0.9;
        }

        .video-preview-wrapper:hover .play-button,
        .video-card:hover .play-button {
            transform: scale(1.1);
            opacity: 1;
        }

        /* Info Overlay */
        .video-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            color: white;
        }

        .channel-info {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .video-title {
            font-size: 20px;
            margin: 10px 0;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .episode-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
            font-size: 14px;
            color: #ccc;
        }

        /* Carousel Thumbnails */
        .aspect-ratio-16-9 {
            position: relative;
            height: 180px;
            overflow: hidden;
            border-radius: 4px;
        }

        .thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-icon-small {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .video-card:hover .play-icon-small {
            opacity: 1;
        }

        /* Swiper Thumbnails */
        .swiper-view .swiper-slide {
            opacity: 0.6;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .swiper-view .swiper-slide:hover,
        .swiper-view .swiper-slide-thumb-active {
            opacity: 1;
        }

        .swiper-slide {
            transition: transform 0.3s ease;
        }

        /* Custom Modal for Video */
        .video-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9998;
            display: none;
        }

        .video-modal-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            z-index: 9999;
            display: none;
        }

        .video-modal-content {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            background: #000;
        }

        .video-modal-content iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
            z-index: 10000;
        }

        .video-modal-close:hover {
            background: #d22525;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .video-preview-wrapper {
                height: 300px !important;
            }

            .video-title {
                font-size: 16px;
            }

            .aspect-ratio-16-9 {
                height: 140px;
            }

            .video-modal-container {
                width: 95%;
            }
        }

        /* SweetAlert2 custom styles */
        .swal2-popup {
            font-size: 1rem;
        }
