<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temporary Maintenance</title>

<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    background:#0f172a;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    text-align:center;
    padding:20px;
}

.container{
    max-width:700px;
}

h1{
    font-size:42px;
    margin-bottom:20px;
    font-weight:600;
}

p{
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
}

.status{
    margin-top:30px;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#22c55e;
}
</style>
</head>
<body>

<div class="container">
    <h1>Website Recovery in Progress</h1>

    <p>
        Following a severe cyberattack, our systems have been successfully recovered.
        We are currently performing final security checks and maintenance to ensure
        the safety, integrity, and reliability of our services.
    </p>

    <p style="margin-top:20px;">
        The website will be brought back online shortly once all verification
        procedures have been completed.
    </p>

    <div class="status">
        Maintenance Mode
    </div>
</div>

</body>
</html>