* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary:#2563eb;
    --secondary:#1d4ed8;
    --success:#16a34a;
    --danger:#dc2626;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#64748b;
    --card:#ffffff;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f1f5f9;
    color:#111827;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:var(--dark);
    color:white;
    padding:20px 0;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h1{
    font-size:28px;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#60a5fa;
}

.hero{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg,#2563eb,#0f172a);
    color:white;
}

.hero h2{
    font-size:42px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

button{
    border:none;
    background:var(--primary);
    color:white;
    padding:15px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

button:hover{
    background:var(--secondary);
}

.status{
    padding:60px 0;
}

.status h3{
    margin-bottom:20px;
}

#serverStatus{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-size:18px;
}

.online{
    color:var(--success);
    font-weight:bold;
}

.offline{
    color:var(--danger);
    font-weight:bold;
}

footer{
    margin-top:60px;
    background:var(--dark);
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

.header .container{
    flex-direction:column;
}

nav{
    margin-top:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h2{
    font-size:30px;
}

}
