/* ===================== RESET.CSS DE LA MORT ===================== */

/* Box sizing et héritage */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    vertical-align: baseline;
    background: transparent;
    font: inherit;
    color: inherit;
}

/* HTML de base */
html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1.5;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Suppression des listes */
ul, ol {
    list-style: none;
}

/* Suppression des citations et des décorations */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

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

/* Formulaires */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Liens et texte */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

fieldset {
    border: none;
}

/* Reset scrollbars pour uniformité */
*::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Inheritance global pour les polices monospace / néon */
body, button, input, select, textarea {
    font-family: 'Share Tech Mono', monospace, Arial, sans-serif;
}

/* Normalize pseudo-elements */
::before, ::after {
    box-sizing: inherit;
}

/* Pour éviter le décalage des liens :focus */
:focus {
    outline: none;
}
