
        
        .compatible-section {
            text-align: center;
            padding: 60px 0;
        }
        
        .compatible-section h2 {
            font-size: 42px;
            margin-bottom: 40px;
        }
        
        .compatible-platforms {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .compatible-platforms img {
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .compatible-platforms img:hover {
            opacity: 1;
        }
        
        .carousel-section {
            padding: 0px 0 40px;
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
        }
        
        .carousel-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .carousel {
            display: flex;
            gap: 20px;
            will-change: transform;
            transition: transform 0.1s linear;
        }
        
        /* Channel Carousel */
        .channel-carousel {
            height: 120px;
        }
        
        .channel-item {
            min-width: 150px;
            height: 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .channel-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        /* Platform Carousel */
        .platform-carousel {
            height: 100%;
        }
        
        .platform-item {
            min-width: 220px;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Center the platform carousel */
        .platform-carousel .carousel {
            justify-content: center;
        }
        
        /* Ensure only 4 platforms are visible */
        .platform-carousel {
            max-width: calc(220px * 4 + 20px * 3); /* 4 items + 3 gaps */
            margin: 0 auto;
        }
        
        .platform-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .platform-logo {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            padding: 20px 0;
        }
        
        .platform-logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .channel-item {
                min-width: 120px;
                height: 80px;
            }
            
            .platform-item {
                min-width: 180px;
                height: 240px;
            }
        }
        
        .white-icon {
            filter: brightness(0) invert(1);
          }