/* ===============================
   PROMO RUNNING TEXT - GLOBAL
   Bintang Cerdas Unggul
================================ */

.promo-marquee{
  max-width:560px;
  margin:48px auto 48px;      /* posisi tengah */
  background:#dcfce7;         /* hijau muda */
  color:#065f46;
  border-radius:16px;
  overflow:hidden;
  padding:14px 0;             /* lebih tinggi */
  box-shadow:0 6px 18px rgba(16,185,129,.25);
  border:1px solid #86efac;
}

.promo-track{
  display:inline-block;
  white-space:nowrap;
  padding-left:100%;
  font-size:14px;
  font-weight:500;
  animation:promo-marquee 20s linear infinite;
}

@keyframes promo-marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-100%); }
}

/* Mobile */
@media (max-width:480px){
  .promo-marquee{
    max-width:92%;
    margin:36px auto 36px;
  }
  .promo-track{
    font-size:13px;
    animation-duration:26s;
  }
}

/* Pause saat hover (UX bagus) */
.promo-marquee:hover .promo-track{
  animation-play-state:paused;
}
