/** * ========================================================================== * VIDEO PLAYER & PLAYLIST MANAGER - OPTIMIZED FOR DESKTOP & MOBILE * ========================================================================== */ window.VideoPlayer = { activeVideoId: null, isMobile: function() { return window.innerWidth <= 768; }, init: function() { const countBadge = document.getElementById('videoCountBadge'); if (countBadge) { countBadge.textContent = `${TVSI_DATA.videoList.length} Clips`; } this.renderPlaylist(TVSI_DATA.videoList); // Mặc định chọn video đầu tiên nếu chưa chọn if (!this.activeVideoId && TVSI_DATA.videoList.length > 0) { this.selectVideo(TVSI_DATA.videoList[0].id, false); } }, // Render danh sách video bên cột playlist renderPlaylist: function(list) { const container = document.getElementById('videoItemsList'); if (!container) return; container.innerHTML = list.map((item, index) => `