/* 🔔 ALERT BAR CSS START */
.top-alert-bar {
  width: 100%;
  background: #1e73be;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999;
  padding: 10px 0;
  font-size: 14px;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 55s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.official-site {
  color: #8B0000;
  font-weight: 700;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
/* 🔔 ALERT BAR CSS END */