body{
    margin:0;
    font-family:Arial,sans-serif;
    background:linear-gradient(180deg,#0d1b2a,#1b263b,#121212);
    color:white;
}

.container{
    width:90%;
    max-width:420px;
    margin:30px auto;
    background:#1f1f1f;
    padding:25px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,0,0,.4);
}

h1{
    text-align:center;
    margin-bottom:5px;
}

p{
    text-align:center;
    color:#bdbdbd;
}

label{
    display:block;
    margin-top:18px;
    margin-bottom:5px;
    font-weight:bold;
}

input,select{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#2b2b2b;
    color:white;
    box-sizing:border-box;
}

.price-box{

    margin-top:20px;
    padding:15px;

    background:#2d2d2d;

    border-left:5px solid #00c853;

    border-radius:12px;

}

.price-box h3{

    margin-top:0;

    color:#00c853;

}

button{

    width:100%;

    margin-top:20px;

    padding:15px;

    border:none;

    border-radius:12px;

    background:#00c853;

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:scale(1.03);

    box-shadow:0 0 15px #00c853;

}

.banner{
    width:100%;
    height:180px;
    border-radius:15px;
    margin-bottom:20px;

    background:
    linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url("https://images.unsplash.com/photo-1614294149010-950b698f72c0?w=1200");

    background-size:cover;
    background-position:center;

    overflow:hidden;

    box-shadow:0 0 20px rgba(79,195,247,.5);

    animation:fade 1s;
}

.banner-overlay{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
}

.banner h1{
    text-shadow:0 0 15px #4fc3f7;
}

.play-now{
    margin-top:10px;
    padding:8px 15px;

    background:#4fc3f7;
    color:black;

    border-radius:20px;
    font-weight:bold;
}

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(-15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

input:focus,
select:focus{

    outline:none;

    border:2px solid #4fc3f7;

    box-shadow:0 0 10px #4fc3f7;

}
.server-status{
    margin-bottom:20px;
    padding:15px;
    border-radius:12px;
    background:#2d2d2d;
    border-left:5px solid #00c853;
    text-align:center;
}

.server-status h3{
    margin:0;
    color:#00c853;
}

.server-status p{
    margin:5px 0;
    color:white;
}
#status{
    font-size:18px;
    font-weight:bold;
    margin-top:10px;
}

.social-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.social-buttons a{

    display:block;

    text-align:center;

    padding:12px;

    border-radius:12px;

    text-decoration:none;

    background:#2b2b2b;

    color:white;

    font-weight:bold;

    transition:.3s;

}

.social-buttons a:hover{

    transform:translateY(-2px);

    box-shadow:0 0 10px #4fc3f7;

}
.navbar{
    display:flex;
    justify-content:space-around;
    align-items:center;
    background:#1f1f1f;
    padding:15px;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 0 10px rgba(79,195,247,.3);
}

.navbar a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.navbar a:hover{
    color:#4fc3f7;
}
.navbar{
    display:flex;
    justify-content:space-around;
    background:#1f1f1f;
    padding:15px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.home-logo{
    width:220px;
    display:block;
    margin:auto;
}

.hero{
    text-align:center;
}

.owner-card{
    margin-top:20px;
    padding:20px;
    background:#2d2d2d;
    border-radius:15px;
    text-align:center;
}

.owner-skin{
    width:120px;
    image-rendering:pixelated;
}

.home-btn{
    display:block;
    margin-top:20px;
    text-align:center;
    padding:15px;
    background:#00c853;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
}
.staff-card{
    background:#2d2d2d;
    padding:20px;
    border-radius:15px;
    margin-top:20px;
    text-align:center;
    border:2px solid #4fc3f7;
}

.staff-skin{
    width:120px;
    image-rendering:pixelated;
    margin-bottom:10px;
}

.staff-card h2{
    color:#ffd54f;
}

.staff-card span{
    color:#bdbdbd;
}
.staff-skin{
    width:120px;
    height:120px;
    object-fit:cover;
    object-position: top;
    border-radius:50%;
    border:3px solid #4fc3f7;
}
.banner img{
    width:100%;
    border-radius:15px;
}
.owner-avatar{
    width:90px;
    height:90px;
    margin:0 auto 15px;
    border-radius:50%;
    background:linear-gradient(135deg,#4fc3f7,#ffd54f);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    box-shadow:0 0 20px rgba(79,195,247,.6);
}