
    <!DOCTYPE html>
    <html lang="fr">
    <head>
        <meta charset="UTF-8">
        <title>Connexion à Northwood RP...</title>
        <style>
            body { background: #050505; color: white; font-family: sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; }
            .loader { border: 3px solid rgba(255,255,255,0.1); border-top: 3px solid #7000ff; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; }
            @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
            p { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.6); }
        </style>
        <script>
            setTimeout(function(){
                window.location.href = "https://northwoodrp.fr";
            }, 1500);
        </script>
    </head>
    <body>
        <div class="loader"></div>
        <p>Lancement de FiveM... Transfert vers le site web.</p>
        <iframe src="fivem://connect/play.northwoodrp.fr" style="display:none;"></iframe>
    </body>
    </html>