*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* prevent horizontal scroll at the viewport level */
}

body {
  background-color: #150d00;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  /* clip-path handles right bleed cleanly without affecting scroll */
  overflow-x: clip;
}

img, svg {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
