/* Fixed full-screen stadium background */
html,
body {
  background: transparent !important;
  background-color: #031009 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("pitch-hero.jpg") center / cover no-repeat !important;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  body::before {
    background-size: cover !important;
    background-position: center top !important;
  }
}

