body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1b2735, #090a0f);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 30px 50px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

h1 {
    font-size: 3em;
    color: #ffcc00;
    text-shadow: 2px 2px #000;
    margin-bottom: 30px;
}

.status {
    font-size: 1.5em;
    margin: 15px 0;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    min-width: 250px;
    transition: all 0.3s ease-in-out;
}

.online {
    background-color: rgba(0,200,0,0.7);
    color: #fff;
    font-weight: bold;
}

.offline {
    background-color: rgba(200,0,0,0.7);
    color: #fff;
    font-weight: bold;
}
