});/* Add custom JS code below */ document.addEventListener("DOMContentLoaded", function () { // إخفاء قسم وسائل التواصل الأصلي const oldSection = document.querySelector('#main-links-8'); if (!oldSection) return; oldSection.style.display = "none"; // إنشاء قسم جديد const box = document.createElement("div"); box.innerHTML = `
`; oldSection.parentNode.insertBefore(box, oldSection); // CSS const style = document.createElement("style"); style.innerHTML = ` #custom-social-links{ text-align:center; margin:40px 0; } #custom-social-links h3{ margin-bottom:25px; font-size:28px; } #custom-social-links .social-list{ display:flex; justify-content:center; gap:35px; flex-wrap:wrap; } #custom-social-links .social-list a{ display:flex; align-items:center; gap:10px; font-size:20px; font-weight:600; color:inherit; text-decoration:none; } #custom-social-links .social-list a i{ font-size:30px; } `; document.head.appendChild(style); });