
        <!DOCTYPE html>
        <html>
        <head>
            <title>Coming Soon</title>
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <style>
                body {
                    margin: 0;
                    height: 100vh;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #0f172a;
                    color: #e2e8f0;
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
                }
                .container {
                    text-align: center;
                }
                h1 {
                    font-size: 3rem;
                    margin-bottom: 10px;
                }
                p {
                    font-size: 1.2rem;
                    color: #94a3b8;
                }
            </style>
        </head>
        <body>
            <div class="container">
                <h1>Coming Soon</h1>
                <p>We’re working on something great.</p>
            </div>
        </body>
        </html>