/** * Netflix 2025 "New & Hot" Feed Component * Optimized for mobile vertical scrolling */ export function createNewAndHotItem(video) { const item = document.createElement('div'); item.className = 'new-hot-item'; // Random date for demo const months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']; const month = months[Math.floor(Math.random() * 12)]; const day = Math.floor(Math.random() * 28) + 1; item.innerHTML = `
${video.description || 'Watch now on Netflix.'}