body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Un noir profond comme base */
    color: #c0c0c0; /* Un gris clair pour le texte */
}

header {
    background-color: #0e0e0e; /* Un peu plus clair que le fond du body */
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    height: 60px;
    margin-left: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #d4af37; /* Couleur or pour les liens */
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #d4af37; /* Couleur or pour l'effet hover */
    color: black;
    border-radius: 5px;
}

footer {
    background-color: #0e0e0e;
    color: #c0c0c0;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.discord-btn {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 20px;
    background-color: #5865F2; /* Couleur Discord */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.discord-btn:hover {
    background-color: #4752c4; /* Couleur Discord foncée pour le hover */
}


