/* =====================================================
   FOOTER STYLES
   ===================================================== */

.footer-main {
  background-color: #8b0c1a;
  position: relative;
}

.footer-main a {
  color: #ffffff;
  text-decoration: none;
}

/* Footer Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 16px;
  opacity: 0.7;
  line-height: 28px;
}

.footer-links a:hover,
.footer-main a:hover {
  opacity: 1;
  color: #FFBA24;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  font-size: 18px;
}

/* Back to Top */
.back-to-top {
  position: absolute;
  bottom: 60px;
  right: 20px;
  background: #9e0f22;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 10;
}

a.pulse-play {
  color: #FFBA24;
}

a.pulse-play:hover {
  color: #fff;
}

/* Sticky Ticker */

.footer-scroller {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-top-right-radius: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #8E1921 0%, #DE0211 100%);
  border-top-left-radius: 50px;
  padding: 10px 0;
  z-index: 99;
}

.scroller-track span {
  color: #fff;
  font-weight: 600;
  position: relative;
  padding: 0 5px;
}

/* Divider after each span */
.scroller-track span:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}


/* Pause on hover */
.footer-scroller:hover .scroller-track {
  animation-play-state: paused;
}

.scroller-track {
  display: flex;
  gap: 0px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

/* Divider after each span */
.scroller-track span:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}

/* Scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}