.ticker-wrapper {
  width: 100%;
  background-color: #1c2539;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 2px solid #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.ticker {
  display: inline-flex;
  animation: ticker-scroll 60s linear infinite; /* slower, smoother */
}

.ticker-content {
  flex: 0 0 auto;
  padding-right: 100px; /* space between repeats */
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-content a {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

/* Responsive: smaller text on mobile */
@media (max-width: 600px) {
  .ticker-content {
    font-size: 14px;
    padding-right: 60px;
  }
}
