
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0c0c0f;
    color: #00ff91;
    text-align: center;
}
header {
    padding: 2rem;
}
header img {
    max-width: 300px;
}
h1 {
    font-size: 3rem;
    color: #00ff91;
    margin: 0.5rem 0;
    text-shadow: 0 0 10px #00ff91;
}
.slogan {
    font-size: 1.5rem;
    color: #bb66ff;
    text-shadow: 0 0 10px #bb66ff;
}
section {
    padding: 2rem;
}
.links a {
    display: inline-block;
    margin: 1rem;
    padding: 1rem 2rem;
    background: #00ff91;
    color: #0c0c0f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
}
.links a:hover {
    background: #bb66ff;
    color: white;
    box-shadow: 0 0 15px #bb66ff;
}
footer {
    padding: 2rem;
    background: #1a1a1a;
    color: #999;
}


/* Bouton Discord Néon */
.discord-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px 0;
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 0 15px #8e2de2, 0 0 25px #4a00e0;
    transition: 0.3s;
}
.discord-btn:hover {
    background: linear-gradient(90deg, #00ff88, #00bfff);
    box-shadow: 0 0 20px #00ff88, 0 0 30px #00bfff;
}

/* Widget Discord */
.discord-widget {
    margin: 40px auto;
    max-width: 800px;
    padding: 15px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 15px #8e2de2, 0 0 25px #4a00e0;
}
.discord-widget h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #00ff88;
    text-shadow: 0 0 5px #00ff88, 0 0 10px #4a00e0;
}


/* Compteur Discord dans le header */
.discord-counter {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88, 0 0 12px #00bfff;
    font-weight: bold;
}


/* Compteur Discord dans le header */
.discord-stats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 10, 40, 0.6);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(142,45,226,0.5);
    font-weight: 600;
    font-size: 0.95rem;
}
.discord-stats .label {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}
.discord-stats .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88, 0 0 16px #00ff88;
    display: inline-block;
}
.discord-stats .sep { opacity: 0.5; }
@media (max-width: 520px) {
    .discord-stats {
        font-size: 0.85rem;
        padding: 7px 12px;
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .discord-stats .sep { display: none; }
}
