/* base-reset.css — Global resets and body styling */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: url('glass-bg.png') center/cover no-repeat, #0f1115;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }
