... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
30099 مقال 232 مصدر نشط 38 قناة مباشرة 7514 خبر اليوم
آخر تحديث: منذ 0 ثانية

“على إيقاع الدم… حفلاتهم تُقام فوق قبور غزة

العالم
أمد للإعلام
2026/03/26 - 20:40 501 مشاهدة

“على إيقاع الدم… حفلاتهم تُقام فوق قبور غزة”
بقلم: سامي إبراهيم فودة
في زمنٍ تُعدّ فيه الأنفاس، وتُحصى فيه الأرواح تحت الركام، يخرج علينا مشهدٌ يليق بالخزي أكثر مما يليق بالحياة… حفلٌ غنائي على شاطئ بحر غزة، بثمن تذكرةٍ يساوي وجع عائلة، أو دواء جريح، أو رغيفًا مفقودًا من فم طفل.
أيُّ زمنٍ هذا الذي يُنصب فيه المسرح فوق الوجع؟ وأيُّ قلوبٍ تلك التي تُصفّق بينما لا تزال الأرض تلفظ شهداءها؟
غزة اليوم ليست مدينةً عادية… إنها جرحٌ مفتوح، نزفٌ مستمر، وصرخةٌ لا تنقطع.
تحت كل حجرٍ حكاية، وتحت كل ركام جسدٌ لم يُودّع، واسمٌ لم يُكتب على شاهد قبر. عشرات الآلاف لا يزالون بين غائبٍ ومفقود، ومئات الآلاف يحملون في أجسادهم ذاكرة الألم.
وفي هذا المشهد، يخرج من قرر أن يعزف لحنًا آخر… لحن الانفصال عن الواقع، لحن القسوة المتخفية بثوب “الترفيه”.
ليس الأمر مجرد حفل… بل هو صفعة أخلاقية، وجرح جديد يُضاف إلى جراح لم تلتئم.
من هؤلاء؟
ليسوا فقط أفرادًا غابت عنهم البوصلة… بل هم انعكاس لحالةٍ أخطر:
تطبيع مع الألم، وتبلّد في الإحساس، وانفصال عن الحقيقة التي يعيشها الناس في الخيام، وتحت القصف، وفي طوابير الانتظار.
ومن وراءهم؟
وراءهم ثقافةٌ تحاول إعادة تشكيل الوعي…
تحويل المأساة إلى مشهد عابر،
وتحويل الدم إلى رقم،
وتحويل الصمود إلى خلفيةٍ صامتة لرقصٍ عابر.
أما الهدف؟
فهو أخطر من الحفل نفسه…
إفراغ الوجع من معناه،
وكسر حالة الوعي الجمعي،
ودفع الناس—ولو تدريجيًا—للتعايش مع الكارثة كأنها قدرٌ عادي لا يستحق الغضب.
لكن الحقيقة التي لا يمكن تزويرها:
غزة ليست بخير.
الحرب لم تنتهِ.
وموكب الشهداء لم يُغلق صفحته بعد.
وشلال الدم لا يزال يجري… وإن حاول البعض تغطيته بصوت الموسيقى.

في ختام سطور مقالي::
ما يجري ليس حدثًا عابرًا… بل جريمة أخلاقية بحق مدينةٍ مكلومة، وذاكرةٍ جماعية تنزف.
غزة لا تحتاج حفلاتٍ على شاطئها… بل تحتاج من يرفع عنها الركام، ويحصي شهداءها، ويُعيد للإنسان فيها حقه في الحزن قبل الفرح.
فمن لا يشعر بهذا الوجع…
إما أنه فقد إنسانيته،
أو قرر أن يدفنها حيّة… كما دُفن أهل غزة تحت الركام.

مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 58380; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 58380; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤