Lorem Ipsum has been the industry's standard dummy text.
لا يوجد مباريات هامة اليوم
'; return; } matches = matches.map(match => { const matchTimeFull = new Date(match[6]); const currentTime = new Date(); const timeDiff = (currentTime - matchTimeFull) / 60000; let status = "لم تبدأ بعد"; let statusClass = "status-not-started"; let statusOrder = 2; if (timeDiff >= 0 && timeDiff <= 120) { status = "مباشر"; statusClass = "status-live"; statusOrder = 1; } else if (timeDiff > 120) { status = "انتهت المباراة"; statusClass = "status-ended"; statusOrder = 3; } return { statusOrder, matchTimeFull, html: `${match[0]}
${matchTimeFull.toLocaleTimeString('en-EG', { hour: '2-digit', minute: '2-digit' })}
${status}
${match[3]}