                /* Slider */
                .video-slider {
                    display: flex;
                    overflow-x: auto;
                    gap: 16px;
                    padding: 10px 0;
                    scroll-snap-type: x mandatory;
                }

                .video-card {
                    min-width: 250px;
                    cursor: pointer;
                    scroll-snap-align: start;
                    flex-shrink: 0;
                    transition: transform 0.3s;
                }

                .video-card:hover {
                    transform: scale(1.05);
                }

                .video-thumbnail {
                    width: 100%;
                    border-radius: 10px;
                }

                .video-info {
                    margin-top: 8px;
                }

                /* Modal Preview */
                .video-modal {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.9);
                    justify-content: center;
                    align-items: center;
                    z-index: 9999;
                }

                .video-modal iframe {
                    width: 80%;
                    height: 70%;
                    border-radius: 12px;
                }

                .close-btn2 {
                    position: absolute;
                    top: 20px;
                    right: 40px;
                    font-size: 40px;
                    color: white;
                    cursor: pointer;
                }