#fw-section-links-list-85654fca-d768-4d20-9d41-91a1b0fce554 {

a {
  background: black; /* الخلفية باللون الأسود */
  color: white; /* النص باللون الأبيض */
  text-decoration: none; /* إزالة التسطير تحت النص */
  padding: 5px 10px; /* إضافة مسافة داخلية حول النص (اختياري) */
  border-radius: 5px; /* جعل الزوايا مستديرة (اختياري) */
}

a:hover {
  background: gray; /* تغيير لون الخلفية عند التمرير (اختياري) */
  color: black; /* تغيير لون النص عند التمرير (اختياري) */
}

}

#fw-section-announcement-bar-3da7d992-6f63-444a-87a3-5f8928532c20 {

.announcement-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    width: 100vw;
    background-color: #333;
    color: white;
    font-size: clamp(14px, 4vw, 18px);
    font-weight: bold;
    animation: flashEffect 2s ease-in-out infinite;
    transition: background-color 0.3s ease-in-out;
}

.announcement-bar:hover {
    background-color: #8B0000;
}

/* تأثير الوميض */
@keyframes flashEffect {
    0% { background-color: #333; }
    50% { background-color: #550000; }
    100% { background-color: #333; }
}

/* حركة النص */
.marquee {
    display: inline-block;
    max-width: 90%; /* يمنع خروج النص عن الحد */
    white-space: normal; /* يسمح بتقسيم النص إلى أسطر */
    line-height: 1.5; /* يجعل المسافة بين الأسطر متناسقة */
    animation: moveText 10s linear infinite;
}

@keyframes moveText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

a {
    text-decoration: none;
    color: white;
    font-size: clamp(14px, 4vw, 18px);
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
}

/* تحسين العرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 14px;
        padding: 10px;
    }
    .marquee {
        animation-duration: 7s; /* تسريع الحركة قليلاً */
        max-width: 95%; /* يجعل النص أكثر وضوحًا */
    }
}

}

#fw-section-newsletter-1736892321 {

a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4e50, #ff0000); /* خط أحمر متوهج */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover {
  color: #ff1a1a;
  text-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
}

a:hover::after {
  transform: scaleX(1); /* يظهر الخط عند اللمس */
}

}
#fw-section-footer {

a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4e50, #ff0000); /* خط أحمر متوهج */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover {
  color: #ff1a1a;
  text-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
}

a:hover::after {
  transform: scaleX(1); /* يظهر الخط عند اللمس */
}

}
#fw-section-header {

a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4e50, #ff0000); /* خط أحمر متوهج */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover {
  color: #ff1a1a;
  text-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
}

a:hover::after {
  transform: scaleX(1); /* يظهر الخط عند اللمس */
}

}