
/* Global page background driven by CSS var set by hero slider */
:root{ --page-bg-url: none; }
html, body{ background-color: #000; }
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--page-bg-url);
  background-size: cover;
  background-position: center;
  opacity: 0.22; /* subtle under site content */
  filter: blur(2px);
  pointer-events: none;
}
/* If you want stronger visibility, tweak opacity above. */
