/* شريط كامل العرض */
.ps-root{
  position:relative;
  width:100vw;
  height:120px !important;     /* كان 200 → صغّرناه */
  background:#001472;
  overflow:hidden;
  left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw;
  padding:0 !important;
  border-radius:0 !important;
  line-height:0;
}

/* الداخل */
.ps-viewport{ position:absolute; inset:0; display:flex; align-items:center; }
.ps-track{ display:flex; align-items:center; height:100%; will-change:transform; padding:0 20px; }

/* الشعار */
.ps-track img{
  height:90px;                  /* كان 160 → صغّرناه */
  width:auto;
  display:block;
  object-fit:contain;
}

/* حركة شعار واحد: يمشي من يمين الشاشة لليسار ويطلع */
@keyframes ps-one {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}
.ps-anim { animation: ps-one var(--ps-duration, 20s) linear infinite; }

/* موبايل أصغر */
@media (max-width: 768px){
  .ps-root{ height:90px !important; }
  .ps-track img{ height:70px; }
}

/* احترام تفضيل تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .ps-anim{ animation: none !important; transform: none !important; }
}
/* استهداف كلمة "بالعالم" داخل ويدجت الكلمات المتحركة */
.animated-text-container span{
  display:inline-block;
  padding:5px 10px;
  font-size:1.4em;
  font-weight:bold;

  /* التحريك لليمين (عدّل الرقم على ذوقك) */
  transform: translateX(12px);
  
  /* لون احتياطي واضح على الأبيض (تركوازي شبكات) */
  color: rgb(0, 207, 255);
}

}