
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset='UTF-8'>
        <title>Delpi Server</title>
        <link href='https://fonts.googleapis.com/css2?family=Engagement&family=Indie+Flower&display=swap' rel='stylesheet'>
        <style>
            body { 
                margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; 
                background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                            url('https://i.postimg.cc/8c3hLfMN/Copilot-20260517-142944.png');
                background-size: cover; background-position: center;
            }
            .container { 
                text-align: center; border: 1px solid rgba(255,255,255,0.1); 
                padding: 50px; border-radius: 30px; background: rgba(0, 0, 0, 0.8); 
                backdrop-filter: blur(15px); box-shadow: 0 0 50px rgba(0,212,255,0.2);
            }
            h1 { font-family: 'Engagement', cursive; font-size: 6em; margin: 0; color: #00d4ff; text-shadow: 0 0 20px #00d4ff; }
            .status { font-family: 'Indie Flower', cursive; font-size: 2em; color: white; margin-top: 10px; }
            .dot { height: 12px; width: 12px; background: #00ff88; border-radius: 50%; display: inline-block; margin-right: 10px; box-shadow: 0 0 15px #00ff88; }
            .footer { font-family: sans-serif; font-size: 0.7em; color: #444; margin-top: 40px; letter-spacing: 4px; }
        </style>
    </head>
    <body>
        <div class='container'>
            <h1>Delpi</h1>
            <div class='status'><span class='dot'></span>Sistema Privado</div>
            <div class='footer'>SIN ACCESO EXTERIOR</div>
        </div>
    </body>
    </html>
    