
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Admin Panel | Full House One</title>
            <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>🛡️</text></svg>">
            <style>
                body {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                    background: #0f172a;
                    color: #f8fafc;
                    font-family: system-ui, -apple-system, sans-serif;
                }
                .container { 
                    text-align: center; 
                    border: 1px solid #1e293b; 
                    padding: 40px; 
                    border-radius: 20px; 
                    background: #1e293b60;
                    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
                }
                .icon { font-size: 64px; margin-bottom: 20px; }
                h1 { font-size: 2rem; font-weight: 400; margin: 0; color: #38bdf8; }
                p { color: #94a3b8; margin-top: 12px; font-size: 1.1rem; }
                .status { 
                    display: inline-block; 
                    margin-top: 20px; 
                    padding: 4px 12px; 
                    background: #064e3b; 
                    color: #34d399; 
                    border-radius: 12px; 
                    font-size: 0.8rem;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                }
            </style>
        </head>
        <body>
            <div class="container">
                <div class="icon">🛡️</div>
                <h1>Admin Portal</h1>
                <p>Management interface is under construction.</p>
                <div class="status">SSL Encrypted</div>
            </div>
        </body>
        </html>