/* =====================================================
   FITPATT – BOTTOM NEWS BAR
   SOURCE: index.html (exact extraction)
===================================================== */

/* Container */
.bottom-news-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36px;

  background: #2b074f67;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-top: 1px solid rgba(0,0,0,0.08);
  z-index: 999;

  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Scrolling text */
.bottom-news-track {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;

  animation: bottomTickerMove 30s linear infinite;

  font-size: 13px;
  font-weight: 600;
  color: #000000bf;
}

/* Animation */
@keyframes bottomTickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Prevent content overlap */
body {
  padding-bottom: calc(36px + env(safe-area-inset-bottom));
}