body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    /* Fond noir pour un look futuriste */
    margin: 0;
    padding: 20px;
}

h1 {
    color: #4fd100;
    /* Vert vif pour le titre */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 0 0 10px #4fd100;
}

p {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #bb86fc;
    /* Violet pour le texte */
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

li {
    background: #1e1e1e;
    /* Fond gris foncé pour les éléments de la liste */
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

input[type="checkbox"] {
    margin-right: 15px;
}

a {
    color: #00d4ff;
    /* Bleu électrique pour les liens */
    text-decoration: none;
    display: block;
    flex-grow: 1;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #bb86fc;
    border-top: 1px solid #4fd100;
    padding-top: 10px;
}
