
        <html>
        <head>
            <meta charset="utf-8">
            <style>
                body {
                    background-color: #f4f7f6;
                    color: #333;
                    font-family: "Segoe UI", Roboto, sans-serif;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    height: 100vh;
                    margin: 0;
                }
                .card {
                    background: white;
                    padding: 40px;
                    border-radius: 12px;
                    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
                    text-align: center;
                    border-top: 5px solid #4caf50;
                }
                .highlight {
                    font-size: 24px;
                    font-weight: 800;
                    color: #2e7d32;
                    margin: 20px 0;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }
                .info { color: #666; font-size: 16px; }
            </style>
        </head>
        <body>
            <div class="card">
                <div class="info">Информационная панель службы</div>
                <div class="highlight">XMPP сервер работает в штатном режиме</div>
                <div class="info">Для подключения используйте порт: <b>5222</b></div>
            </div>
        </body>
        </html>