.gaza-contact-form {
    max-width: 600px;
    margin: 30px auto;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.gaza-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.gaza-contact-form input,
.gaza-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.gaza-contact-form button {
    background: #0066cc;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.gaza-contact-form button:hover {
    background: #004c99;
}





.gaza-today-pulse {
  display: inline-flex;
  align-items: center;
  background: #ff3b3b; /* لون أحمر نابض */
  padding: 10px 16px;
  border-radius: 25px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  animation: pulse-bg 2s infinite;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gaza-today-pulse .pulse-circle {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  margin-right: 12px;
  animation: pulse 1.2s infinite;
  flex-shrink: 0;
}

.gaza-today-pulse .pulse-text strong {
  display: block;
  font-size: 18px;
}

.gaza-today-pulse .pulse-text small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1;
}

/* حركة الدائرة */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* حركة خلفية نابضة */
@
	
	
	
	
	
	
	
.breaking-news-wrapper {
  max-width: 1200px; /* نفس عرض قالب الصحيفة */
  margin: 0 auto; /* توسيط */
  padding: 0 15px;
}

.breaking-news-bar {
  display: flex;
  align-items: center;
  background: #ff3b3b; /* خلفية الشريط */
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  padding: 8px 15px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ad-box {
  background: #fff; /* المربع الأحمر يتحول لأبيض للنص */
  color: #ff3b3b; /* نص أحمر */
  padding: 5px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 10px;
  flex-shrink: 0;
  text-align: center;
}

.breaking-news-content {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.breaking-news-content span {
  display: inline-block;
  padding-left: 100%; /* البداية من خارج الحاوية */
  animation: scroll-news 20s linear infinite;
}

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

/* تحسين للموبايل */
@media screen and (max-width: 768px) {
  .breaةking-news-bar {
    font-size: 14px;
    padding: 6px 10px;
  }
  .ad-box {
    font-size: 12px;
    padding: 4px 8px;
  }
}




