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

body {
    background: #0e0f13;
    color: #e8e6e3;
    font-family: "Segoe UI", system-ui, sans-serif;
    line-height: 1.6;
}

/* ---- Navigation ---- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    background: #14161c;
    border-bottom: 1px solid #23262f;
}

.logo { font-weight: 700; color: #c9a227; letter-spacing: 0.5px; }

.liens a {
    color: #b8b5b0;
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.95rem;
}

.liens a.actif { color: #fff; border-bottom: 2px solid #c9a227; padding-bottom: 3px; }
.liens a.bientot { opacity: 0.4; cursor: default; }
.liens a:hover:not(.bientot) { color: #c9a227; }

/* ---- Héro ---- */
.hero {
    text-align: center;
    padding: 70px 20px 50px;
    background: linear-gradient(180deg, #14161c 0%, #0e0f13 100%);
}

.hero h1 { font-size: 2.6rem; color: #c9a227; margin-bottom: 6px; }
.sous-titre { color: #8f8c86; margin-bottom: 28px; }

.discord-bloc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #14161c;
    border: 1px solid #23262f;
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 18px;
}

.pastille {
    width: 10px; height: 10px;
    background: #3ba55d;
    border-radius: 50%;
    box-shadow: 0 0 8px #3ba55d;
}

.compteur { font-size: 0.95rem; }

.avatars { margin-bottom: 24px; }

.avatars img {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid #23262f;
    margin: 0 -6px;
    background: #14161c;
}

.btn-discord {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(88, 101, 242, 0.4);
}

/* ---- Contenu ---- */
main {
    max-width: 860px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 24px;
}

.carte {
    background: #14161c;
    border: 1px solid #23262f;
    border-radius: 12px;
    padding: 28px 32px;
}

.carte h2 {
    color: #c9a227;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.carte p + p { margin-top: 12px; }

/* ---- Pied de page ---- */
footer {
    text-align: center;
    color: #6f6c66;
    font-size: 0.85rem;
    padding: 30px 0 40px;
}

footer a { color: #8f8c86; }
