/* Hero section desktop fix - constrain width on wide viewports */

/* Ensure body has the dark background so no white edges show */
html, body {
  background-color: #000001;
}

/* On desktop viewports, constrain the page wrapper */
@media (min-width: 768px) {
  /* Target the outermost page wrapper */
  #root > div.min-h-screen {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 0;
  }
}
