<!DOCTYPE html>
    <html>
    <head>
        <title>Waking up container...</title>
        <meta http-equiv="refresh" content="1">
        <style>
            body { font-family: sans-serif; text-align: center; padding-top: 50px; background: #1a1a1a; color: #fff; }
            .spinner { border: 4px solid rgba(255,255,255,0.1); width: 36px; height: 36px; border-radius: 50%; border-left-color: #09f; animation: spin 1s linear infinite; margin: 20px auto; }
            @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        </style>
    </head>
    <body>
        <div class="spinner"></div>
        <h2>Application is starting up...</h2>
        <p>Lazytainer is waking up the remote environment. This page will auto-refresh to wake up the remote environment.</p>
    </body>
    </html>