
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Matrix Server - matrix.home.kantora.pro</title>
            <style>
                body {
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                }
                .container {
                    text-align: center;
                    padding: 2rem;
                    background: rgba(255, 255, 255, 0.1);
                    border-radius: 10px;
                    backdrop-filter: blur(10px);
                }
                h1 {
                    margin-bottom: 1rem;
                    font-size: 2.5rem;
                }
                p {
                    margin-bottom: 2rem;
                    opacity: 0.9;
                }
                .info {
                    background: rgba(255, 255, 255, 0.2);
                    padding: 1rem;
                    border-radius: 5px;
                    margin-top: 2rem;
                }
                code {
                    background: rgba(0, 0, 0, 0.2);
                    padding: 0.2rem 0.5rem;
                    border-radius: 3px;
                    font-family: "Courier New", monospace;
                }
                a {
                    color: white;
                    text-decoration: underline;
                }
            </style>
        </head>
        <body>
            <div class="container">
                <h1>🔐 Matrix Server</h1>
                <p>This is a Matrix homeserver running at <strong>matrix.home.kantora.pro</strong></p>
                <div class="info">
                    <p><strong>Server Name:</strong> <code>matrix.home.kantora.pro</code></p>
                    <p><strong>Client API:</strong> <code>https://matrix.home.kantora.pro</code></p>
                    <p>Connect using any Matrix client like <a href="https://element.io">Element</a>, FluffyChat, etc.</p>
                </div>
            </div>
        </body>
        </html>