/* Import DOTO font */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@400;600&display=swap');

/* Notification wrapper */
#live-notification {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b0b0b;
  border-radius: 999px;
  padding: 10px 18px;
  max-width: 90%;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Marquee container */
.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

/* Running text */
.marquee span {
  display: inline-block;
  padding-left: 100%;
  font-family: 'Doto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #00ff6a; /* GREEN */
  animation: marquee 12s linear infinite;
}

/* RED version (optional) */
/*
.marquee span {
  color: #ff3b3b;
}
*/

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  #live-notification {
    padding: 8px 14px;
    bottom: 10px;
  }

  .marquee span {
    font-size: 13px;
  }
}
