/* Add custom CSS styles below */ 


#promo-bar {
  background: linear-gradient(90deg, #35563c, #111827); /* داكن أنيق */
  color: #facc15; /* ذهبي */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  direction: rtl;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 40px;
  box-sizing: border-box;
  text-align: center;
}

/* إبراز الكود */
#promo-bar strong {
  color: #fde68a;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.6);
}

/* زر الإغلاق */
#promo-bar #close-bar {
  position: absolute;
  left: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #facc15;
  font-weight: bold;
  transition: 0.2s;
}

#promo-bar #close-bar:hover {
  opacity: 0.7;
}

/* موبايل */
@media (max-width: 768px) {
  #promo-bar {
    font-size: 14px;
    padding: 8px 35px;
  }

  #promo-bar #close-bar {
    font-size: 22px;
    left: 10px;
  }
}