الفصل 33
عندما يتعلق الأمر بهذه الأشياء ، قد تفكرون في أنني شخص غريب الأطوار لديه وعي ذاتي مفرط بشأن إفتراضاته.
وأنا أقول هذا مع الإعتراف الكامل بذلك: أعتقد أن هيراغي و أنا عشنا من خلال الإعتماد على أكتاف بعضنا البعض.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي يوليو 2026 ⏳ 1 يوم متبقي 14,000 شعلة الهدف: 66,666 21% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 12,000🥈Fares saeed🔥 1,000🥉Hamood Mahemed🔥 5004Abdullah K🔥 500 🥇M. K💎 12,000🥈Fares saeed💎 1,000🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006الخال!💎 100
بحلول عامنا الثالث ، رغم أننا لم نقم بتقديم عرض كبير بها ، بدأنا في إختيار نفس اللجان والواجبات.
حتى عندما تغيرت مقاعدنا ، حاولنا الجلوس أقرب لبعضنا بقدر المستطاع. كان هناك إتفاق ضمني على أنه عندما تكون الأوقات صعبة ، فإننا “نستخدم” بعضنا البعض.
“ليس عليك حقًا أن تكون صديقًا لي ، لكن أرجوا أن تكون متواجدا عندما أحتاج إلى شخص ما” ، هذا النوع من الأشياء. آه ، ولكن أظن أني جعلت الأمر شاعريا جدا …
من المحتمل أن يكون أقرب إلى “هاي ، أنت وحيد أيضًا ، أليس كذلك؟ كزميل بائس ، أعتقد أنه يجب علينا الحفاظ على الصحبة بيننا.”
“حسنا ، هذا الشخص على الأقل لن يتخلى عني ويهرب” – كانت علاقتنا بهذا النوع من الثقة المشوّهة.
عندما يتعلق الأمر بهذه الأشياء ، قد تفكرون في أنني شخص غريب الأطوار لديه وعي ذاتي مفرط بشأن إفتراضاته. وأنا أقول هذا مع الإعتراف الكامل بذلك: أعتقد أن هيراغي و أنا عشنا من خلال الإعتماد على أكتاف بعضنا البعض.
لقد طورنا في النهاية – بدون ميول عاطفي ، بالتأكيد ، ولكن نوعًا من التعاطف العميق مع بعضنا البعض، على ما أعتقد.
إذا لم نفعل ذلك ، فمن المؤكد أننا لن نبقى سويًا لمنع أنفسنا من أن نصبح وحيدين كليا.
عندما يتعلق الأمر بهذه الأشياء ، قد تفكرون في أنني شخص غريب الأطوار لديه وعي ذاتي مفرط بشأن إفتراضاته. وأنا أقول هذا مع الإعتراف الكامل بذلك: أعتقد أن هيراغي و أنا عشنا من خلال الإعتماد على أكتاف بعضنا البعض.
ولم تكن العزلة هي النقطة المشتركة الوحيدة بيني أنا و هيراغي. حتى أن نوعية عزلتنا تحمل تشابهاً.
… على ما أظن، السبب في أننا لم نتمكن من التعود على الفصل الدراسي لأن كلانا كنا نفكر ب “مكان لم يكن هنا”.
يتبادر إلى ذهننا أن هناك “مكانًا أفضل بكثير من هنا” في مكان ما ، وأصبح عائقًا كبيرًا لأننا كنا عالقين في هذا ال “هنا”.
كنت أفكر بإستمرار في الأيام السعيدة في حياتي الأولى. على هذا النحو ، كانت وجهة نظري للعالم أكثر بهوتا من المعتاد ، وكان لدي القليل من الإرتباط بـ “هنا و الآن”. و تساءلت عما إذا كانت هيراغي تفكر في شيء مماثل – هل هناك سبب آخر حول لماذا ستكون معزولة جدًا؟
كنت أفكر بإستمرار في الأيام السعيدة في حياتي الأولى. على هذا النحو ، كانت وجهة نظري للعالم أكثر بهوتا من المعتاد ، وكان لدي القليل من الإرتباط بـ “هنا و الآن”.
و تساءلت عما إذا كانت هيراغي تفكر في شيء مماثل – هل هناك سبب آخر حول لماذا ستكون معزولة جدًا؟
كنت أفكر بإستمرار في الأيام السعيدة في حياتي الأولى. على هذا النحو ، كانت وجهة نظري للعالم أكثر بهوتا من المعتاد ، وكان لدي القليل من الإرتباط بـ “هنا و الآن”. و تساءلت عما إذا كانت هيراغي تفكر في شيء مماثل – هل هناك سبب آخر حول لماذا ستكون معزولة جدًا؟
أنا متأكد من أن الأشخاص الذين تمكنوا من رؤية إبتسامتها نادرون جدًا ، لكنني كنت من بين القليلين من فعلوا. بعد ثلاث سنوات ونصف ، تمكنا من أن نكون صريحين مع بعضنا البعض.
وهكذا مرة واحدة فقط ، عن طريق الصدفة ، تمكنت من مشاهدة إبتسامتها.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي يوليو 2026 ⏳ 1 يوم متبقي 14,000 شعلة الهدف: 66,666 21% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 12,000🥈Fares saeed🔥 1,000🥉Hamood Mahemed🔥 5004Abdullah K🔥 500 🥇M. K💎 12,000🥈Fares saeed💎 1,000🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006الخال!💎 100
يا لها من مضيعة ، فكرت. إذا إرتدت تلك الإبتسامة طوال الوقت ، أراهن أنه لن يكون من الصعب عليها أن تصبح مركز الإهتمام في الفصل.
هذا هو نوع الجاذبية التي تملكها إبتسامتها. عندما رأيتها لأول مرة ، بدون مزاح ، لقد صدمت. الأمر كان أشبه ب “إنتضري، أنت بهذا القدر من اللطافة ؟!” ، كما تعلمون.
يا لها من مضيعة ، فكرت. إذا إرتدت تلك الإبتسامة طوال الوقت ، أراهن أنه لن يكون من الصعب عليها أن تصبح مركز الإهتمام في الفصل. هذا هو نوع الجاذبية التي تملكها إبتسامتها. عندما رأيتها لأول مرة ، بدون مزاح ، لقد صدمت. الأمر كان أشبه ب “إنتضري، أنت بهذا القدر من اللطافة ؟!” ، كما تعلمون.
بحلول عامنا الثالث ، رغم أننا لم نقم بتقديم عرض كبير بها ، بدأنا في إختيار نفس اللجان والواجبات. حتى عندما تغيرت مقاعدنا ، حاولنا الجلوس أقرب لبعضنا بقدر المستطاع. كان هناك إتفاق ضمني على أنه عندما تكون الأوقات صعبة ، فإننا “نستخدم” بعضنا البعض. “ليس عليك حقًا أن تكون صديقًا لي ، لكن أرجوا أن تكون متواجدا عندما أحتاج إلى شخص ما” ، هذا النوع من الأشياء. آه ، ولكن أظن أني جعلت الأمر شاعريا جدا … من المحتمل أن يكون أقرب إلى “هاي ، أنت وحيد أيضًا ، أليس كذلك؟ كزميل بائس ، أعتقد أنه يجب علينا الحفاظ على الصحبة بيننا.” “حسنا ، هذا الشخص على الأقل لن يتخلى عني ويهرب” – كانت علاقتنا بهذا النوع من الثقة المشوّهة.
