/* white you custom css code here. only css code will work */* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
                
        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .carousel-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 28px;
        }
        
        .video-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
        }
        
        .video-carousel::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari */
        }
        
        .video-item {
            flex: 0 0 calc(33.333% - 20px);
            scroll-snap-align: start;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .video-item:hover {
            transform: translateY(-5px);
        }
        
        .video-iframe {
            width: 100%;
            height: 200px;
            border: none;
        }
        
        .video-info {
            padding: 15px;
        }
        
        .video-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }
        
        .video-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-nav button {
            background: #ff0000;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .carousel-nav button:hover {
            background: #cc0000;
        }
        
        @media (max-width: 900px) {
            .video-item {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 600px) {
            .video-item {
                flex: 0 0 100%;
            }
        }