#siteFooter {
  position: relative;
  /* force full-bleed across the viewport even if the footer is inside a centered container */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  box-sizing: border-box;
  /* respect safe area insets on mobile devices */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  backdrop-filter: saturate(140%) blur(6px);
  background: linear-gradient(
    180deg,
    rgba(2, 36, 84, 0.96),
    rgba(2, 36, 84, 0.98)
  );
  box-shadow: 0 -8px 30px -12px rgba(0, 0, 0, 0.35);
}

#siteFooter::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04) 20%,
    rgba(255, 255, 255, 0.12)
  );
  pointer-events: none;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04) 20%,
    rgba(255, 255, 255, 0.1)
  );
  opacity: 0.7;
}
