/* ===== FOOTER SERAGAM SEMUA HALAMAN ===== */

.sl-global-footer {
  position: relative !important;
  width: 100% !important;
  margin-top: 60px !important;
  padding: 25px 14px !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-top: 1px solid #29466f !important;

  background:
    radial-gradient(
      circle at center top,
      rgba(34, 192, 255, 0.08),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #050d1d 0%,
      #030918 100%
    ) !important;
}

.sl-global-footer::before {
  content: "" !important;
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;

  width: min(360px, 70%) !important;
  height: 2px !important;

  transform: translateX(-50%) !important;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(49, 218, 255, 0.85),
      transparent
    ) !important;

  box-shadow:
    0 0 8px rgba(49, 218, 255, 0.55),
    0 0 18px rgba(49, 218, 255, 0.20) !important;
}

.sl-global-footer-inner {
  min-height: 38px !important;
  padding: 0 17px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;

  border: 1px solid #285180 !important;
  border-radius: 999px !important;

  color: #3ce2ff !important;
  background:
    linear-gradient(
      180deg,
      rgba(9, 25, 49, 0.96),
      rgba(5, 15, 34, 0.98)
    ) !important;

  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.25px !important;
  text-align: center !important;
  text-transform: uppercase !important;

  text-shadow:
    0 0 5px rgba(58, 224, 255, 0.42),
    0 0 11px rgba(33, 150, 255, 0.20) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 14px rgba(31, 165, 255, 0.10) !important;

  animation:
    slFooterGlow 2.4s ease-in-out infinite alternate !important;
}

.sl-footer-separator {
  color: #ffffff !important;
  opacity: 0.8 !important;
}

@keyframes slFooterGlow {
  from {
    border-color: #285180;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 8px rgba(31, 165, 255, 0.06);
  }

  to {
    border-color: #2a8ab3;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 17px rgba(46, 213, 255, 0.20);
  }
}

@media (max-width: 520px) {
  .sl-global-footer {
    margin-top: 40px !important;
    padding: 21px 9px !important;
  }

  .sl-global-footer-inner {
    min-height: 36px !important;
    padding: 0 12px !important;
    gap: 5px !important;
    font-size: 10px !important;
    letter-spacing: 0 !important;
  }
}

/* ===== END FOOTER SERAGAM SEMUA HALAMAN ===== */