/* style.css */
@layer base {
  html, body {
    margin: 0;
    padding: 0;
  }
  body {
    overscroll-behavior: none;
  }
}

/* Hide scrollbar for a cleaner, editorial look */
::-webkit-scrollbar {
  display: none;
}

/* Strict Sharp UI Enforcement (Safety catch) */
/* This ensures no rounded corners ever sneak into any page */
* {
  border-radius: 0 !important;
}