body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #1e272e; 
    color: white; 
    text-align: center; 
    padding: 50px; 
}

.box { 
    background-color: #2c3e50; 
    padding: 30px; 
    border-radius: 15px; 
    display: inline-block; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.4); 
    max-width: 600px; 
}

.online { color: #2ecc71; font-weight: bold; }
.offline { color: #e74c3c; font-weight: bold; }

.server-icon { 
    width: 64px; 
    height: 64px; 
    border-radius: 8px; 
    margin-bottom: 15px; 
    image-rendering: pixelated; 
}

.motd { 
    background-color: #000; 
    padding: 15px; 
    border-radius: 8px; 
    font-family: monospace; 
    text-align: left; 
    margin-bottom: 20px; 
}

.player-list { 
    list-style-type: none; 
    padding: 0; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
}

.player-list li { 
    background: #34495e; 
    padding: 8px 15px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    border: 1px solid #7f8c8d; 
}

/* Le bouton pour télécharger les mods */
.btn-dl { 
    background-color: #e67e22; 
    color: white; 
    padding: 15px 25px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
    display: inline-block; 
    margin-top: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.btn-dl:hover { 
    background-color: #d35400; 
    transform: scale(1.05); 
}
