/* Promo banner styles moved from inline to external file */
.promo-banner {
  width: 100%;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  line-height: 1.4;
  z-index: 999;
}

.promo-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-banner a {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.promo-banner a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .promo-banner-inner {
    padding: 12px 14px;
    gap: 8px;
  }

  .promo-banner a {
    white-space: normal;
  }
}
