body{
    font-family: Arial;
    background:#0f172a;
    color:white;
    text-align:center;
}

#servers-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    padding:30px;
}

.server-card{
    background:#1e293b;
    width:260px;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.online{
    color:#22c55e;
}

.offline{
    color:#ef4444;
}

button{
    padding:10px 15px;
    border:none;
    border-radius:8px;
    background:#3b82f6;
    color:white;
    cursor:pointer;
}

.join-btn{
    display:inline-block;
    margin-top:10px;
    padding:8px 12px;
    background:#22c55e;
    border-radius:6px;
    text-decoration:none;
    color:white;
}

.player-bar{
    width:100%;
    height:10px;
    background:#374151;
    border-radius:5px;
    overflow:hidden;
    margin:8px 0;
}

.player-fill{
    height:100%;
    background:#22c55e;
}

.info-btn{
    margin-left:5px;
    padding:8px 10px;
    background:#6366f1;
    border-radius:6px;
    text-decoration:none;
    color:white;
}

/* modal */

.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
}

.modal-content{
    background:#1e293b;
    padding:20px;
    border-radius:10px;
}

.hidden{
    display:none;
}