/* reset.css */

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

/* HTML de base */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
  font-family: system-ui, sans-serif;
}

/* Body */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000; /* neutre par défaut, ton style peut override */
  color: #fff;
}

/* Titres et texte */
h1, h2, h3, h4, h5, h6, p, blockquote {
  margin: 0;
  font-weight: normal;
}

/* Listes */
ul, ol {
  list-style: none;
}

/* Images et vidéos */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulaires */
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Boutons et liens */
button, a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Caches scrollbars pour HUD futuriste */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
