
    <!DOCTYPE html>
    <html lang="fr">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>JerLive | En attente</title>
        <style>
            :root { --primary: #6366f1; --accent: #a855f7; }
            body { 
                margin: 0; padding: 0; height: 100vh; display: flex; justify-content: center; align-items: center;
                background: radial-gradient(circle at top left, #1e1b4b, #020617);
                font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; overflow: hidden; color: white;
            }
            .background-blobs {
                position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: -1;
            }
            .blob {
                position: absolute; width: 400px; height: 400px; background: var(--primary);
                filter: blur(80px); border-radius: 50%; opacity: 0.2; animation: move 20s infinite alternate;
            }
            .blob.two { background: var(--accent); right: -100px; bottom: -100px; animation-duration: 25s; }
            @keyframes move { from { transform: translate(0,0); } to { transform: translate(100px, 100px); } }

            .glass-card {
                background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px;
                padding: 3rem; text-align: center; max-width: 400px; width: 90%;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
                animation: fadeIn 1s ease-out;
            }
            @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

            .logo-ring {
                width: 80px; height: 80px; margin: 0 auto 1.5rem;
                background: linear-gradient(135deg, var(--primary), var(--accent));
                border-radius: 20px; display: flex; align-items: center; justify-content: center;
                font-size: 2.5rem; box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
            }
            h1 { font-size: 2.2rem; margin: 0; letter-spacing: -1px; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
            p { color: #94a3b8; line-height: 1.6; margin-top: 1rem; }
            .badge {
                display: inline-block; padding: 4px 12px; border-radius: 100px;
                background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2);
                color: #818cf8; font-size: 0.75rem; text-transform: uppercase; font-weight: bold; margin-bottom: 1rem;
            }
        </style>
    </head>
    <body>
        <div class="background-blobs">
            <div class="blob"></div>
            <div class="blob two"></div>
        </div>
        <div class="glass-card">
            <div class="badge">Station de contrôle</div>
            <div class="logo-ring">J</div>
            <h1>JerLive</h1>
            <p>jerlive.com.<br>Le contenu de ce domaine est actuellement privé.</p>
        </div>
    </body>
    </html>