<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Mister La Malice - Portfolio</title>
    <style>
        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            text-align: center;
            background: rgba(255,255,255,0.1);
            padding: 50px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }
        h1 { font-size: 3em; margin-bottom: 20px; }
        p { font-size: 1.2em; margin: 10px 0; }
        .links { margin-top: 30px; }
        .links a {
            display: inline-block;
            margin: 10px;
            padding: 15px 30px;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .links a:hover { transform: scale(1.05); }
    </style>
</head>
<body>
    <div class="container">
        <h1>🚀 Mister La Malice</h1>
        <p>Cybersecurity Engineer & Full-Stack Developer</p>
        <div class="links">
            <a href="https://spicyus.mister-lamalice.fr">SpicyUs App</a>
            <a href="https://api.mister-lamalice.fr/health">API Status</a>
        </div>
        <p style="margin-top: 30px; font-size: 0.9em;">🔒 Secured with SSL ✅</p>
    </div>
</body>
</html>