/* ============================================================
   reset.css — Minimal browser normalization
   ============================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
table { border-collapse: collapse; border-spacing: 0; }

/* Hidden scrollbars */
* { scrollbar-width: none; }
::-webkit-scrollbar { width: 0; height: 0; }
