<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PilotCare - Nouvelle Adresse</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        .container { 
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            max-width: 600px; 
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        h1 { font-size: 2.5rem; margin-bottom: 1rem; }
        p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 2rem; line-height: 1.5; }
        .btn {
            background: white;
            color: #0f766e;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .icon { font-size: 4rem; margin-bottom: 1rem; }
    </style>
    <!-- Auto redirect after 10 seconds -->
    <meta http-equiv="refresh" content="10;url=https://my.pilotcareapp.com">
</head>
<body>
    <div class="container">
        <div class="icon">🚀</div>
        <h1>Notre adresse a changé !</h1>
        <p>L'application PilotCare a déménagé vers une infrastructure plus performante. <br><br>Vous serez redirigé automatiquement dans quelques secondes, ou cliquez sur le bouton ci-dessous pour y accéder immédiatement.</p>
        <a href="https://my.pilotcareapp.com" class="btn">Aller sur my.pilotcareapp.com</a>
    </div>
</body>
</html>