.breaking-news {
  display: flex;
  align-items: center;
  background: #b71c1c;
  color: white;
  padding: 8px 12px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  overflow: hidden;
  border-left: 4px solid #ffeb3b;
}

.breaking-title {
  background: #fff;
  color: #b71c1c;
  font-weight: bold;
  padding: 3px 8px;
  margin-right: 12px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-scroll {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-scroll p {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 30s linear infinite;
}

.news-scroll:hover p {
  animation-play-state: paused; /* hover করলে থেমে যাবে */
}

@keyframes scrollText {
  from { transform: translateX(0%); }
  to { transform: translateX(-100%); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .breaking-news {
    font-size: 12px;
    padding: 6px 8px;
  }
  .breaking-title {
    font-size: 10px;
    padding: 2px 6px;
  }
}