    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
    }

    .status-container {
        background: rgba(0,0,0,0.6);
        padding: 30px;
        border-radius: 15px;
        width: 90%;
        max-width: 600px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    h1 {
        text-align: center;
        margin-bottom: 10px;
    }

    .total-players {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .subserver {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
        transition: background 0.3s;
    }

    .subserver:hover {
        background: rgba(255,255,255,0.2);
    }

    .online {
        color: #00ff99;
    }

    .offline {
        color: #ff4d4d;
    }

    .loading {
        text-align: center;
        margin-top: 15px;
        font-style: italic;
        color: #ccc;
    }