/**
 * Modul: Marquee (teks berjalan)
 */

.marquee-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #003442, #0066cc); /* biru laut ke biru */
  color: #fff;
  padding: 12px 0;
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-text {
  padding-right: 50px; /* jarak antar teks */
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.highlight-red {
  color: #003442;
}
.highlight-blue {
  color: #33ccff;
}
.highlight-black {
  color: #000;
}
