*{box-sizing:border-box}
body{
margin:0;
font-family:Cairo,Arial;
background:#0f172a;
color:#fff;
}
.header{
text-align:center;
padding:20px;
background:linear-gradient(135deg,#1e3a8a,#2563eb);
}
.container{
max-width:900px;
margin:20px auto;
padding:15px;
text-align:center;
}
.server-img{
width:220px;
height:220px;
object-fit:cover;
border-radius:50%;
box-shadow:0 10px 30px rgba(0,0,0,.6);
margin:20px auto;
display:block;
}
.info{
background:#020617;
padding:15px;
border-radius:14px;
}
.btn{
padding:12px 22px;
border:none;
border-radius:12px;
font-weight:bold;
cursor:pointer;
margin:10px;
}
.admin{background:#facc15;color:#000}
.save{background:#22c55e}
.close{background:#ef4444;color:#fff;width:100%}

.modal{
display:none;
position:fixed;
top:0;left:0;
width:100%;height:100%;
background:rgba(0,0,0,.6);
justify-content:center;
align-items:center;
}
.modal-box{
background:#020617;
padding:20px;
border-radius:14px;
width:90%;
max-width:400px;
}
input,textarea{
width:100%;
padding:10px;
margin:8px 0;
border-radius:8px;
border:none;
}
.footer{
text-align:center;
padding:12px;
background:#020617;
color:#94a3b8;
font-size:14px;
}

@media(max-width:600px){
.server-img{width:180px;height:180px}
}
