Early kick-offs to reshape work, sleep, productivity as Al Nashama begin World Cup debut — expert 

Jordan opens its World Cup campaign against Austria on June 17 (7:00am Jordan time), faces Algeria on June 23 (6:00am), and meets reigning champions Argentina on June 28 (5:00am) (JT file)
Jordan opens its World Cup campaign against Austria on June 17 (7:00am Jordan time), faces Algeria on June 23 (6:00am), and meets reigning champions Argentina on June 28 (5:00am) (JT file)

Fans urged to maintain disciplined sleep schedules as deprivation may disrupt circadian rhythm, cause jet lag-like fatigue


AMMAN — As Jordanians prepare for the national team’s historic FIFA World Cup debut, early-morning kick-offs are expected to reshape daily routines, sleep patterns and work schedules across the Kingdom, as millions plan to follow Al Nashama’s first appearance on football’s biggest stage.

Jordan will open its World Cup journey against Austria on June 17 at 7:00am Jordan time before facing Algeria on June 23 at 6:00am. The Kingdom’s final group-stage match against reigning world champions Argentina is scheduled for June 28 at 5:00am, with all matches taking place in the US.

Prime Minister Jafar Hassan has directed public institutions to begin official working hours at 10:00am on the days Jordan plays its World Cup matches, allowing citizens to follow the national team during its historic debut. The decision applies to June 17, June 23 and June 28.

While the measure is expected to ease pressure on public-sector employees, a sleep specialist warns that repeated early-morning awakenings may still disrupt the body’s biological clock and affect productivity and overall well-being.

Mohammad Tarawneh, a consultant in pulmonary medicine and sleep disorders, said that sleep is a vital biological process, with adults requiring around eight hours per night across 90–120-minute cycles that are essential for physical and mental restoration.

He said that sleep is regulated by the circadian rhythm, which depends mainly on light and darkness, adding that disruptions, including waking at unusually early hours, can suppress melatonin production, as blue light from screens confuses the brain into delaying sleep signals.

“Sleep is not only about rest, but about regulating hormones, body temperature, blood pressure and digestion,” Tarawneh said, noting that repeated disruption can create effects similar to jet lag without travel.

He noted that sleep deprivation follows a clear pattern, stressing that even one night can increase emotional sensitivity and reaction times, while two to three nights may significantly impair memory, concentration and physical energy, alongside headaches and increased cravings for sugar and fat due to hormonal imbalance affecting ghrelin and leptin.

Tarawneh also warned that lack of sleep affects the frontal lobe of the brain, reducing attention span, decision-making ability and risk assessment, while increasing irritability and anxiety.

He also highlighted the risk of “microsleep” episodes, brief involuntary sleep lapses that can occur during work, study or driving.

To mitigate the impact of early matches, Tarawneh advised fans to plan sleep schedules in advance, take short naps (20–30 minutes or a full 90-minute cycle when possible), and maintain regular sleep patterns on non-match days to repay accumulated sleep debt.

He also recommended avoiding heavy meals and limiting caffeine in the evening, noting that both can interfere with post-match recovery sleep, while discouraging prolonged screen use after matches to help the brain transition into rest.

As excitement builds for Jordan’s World Cup debut, Tarawneh said that balancing national enthusiasm with disciplined sleep habits will be key to ensuring fans can enjoy the tournament without compromising health, safety or productivity.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });