/* Reset CSS - Remise à zéro des styles par défaut */

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

html {
    font-size: 1rem;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #6200bd 0%, #6e0000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

ul,
ol {
    list-style: none;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Suppression des outlines par défaut pour l'accessibilité */
*:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Amélioration de la lisibilité sur les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}