<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Maintenance</title>

<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0f172a;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.box{
    width:700px;
    max-width:90%;
    padding:40px;
    text-align:center;
    border-radius:15px;
    background:#1e293b;
    box-shadow:0 0 25px rgba(0,255,255,.25);
}

h1{
    font-size:40px;
    color:#00e5ff;
    margin-bottom:20px;
}

p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:15px;
}

.time{
    color:#38bdf8;
    margin-top:20px;
}

.footer{
    margin-top:30px;
    color:#94a3b8;
    font-size:14px;
}
</style>

</head>
<body>

<div class="box">
    <h1>Website Under Maintenance</h1>

    <p>
        Mohon maaf, website sedang dalam proses pemeliharaan
        atau pembaruan sistem.
    </p>

    <p>
        Silakan kembali beberapa saat lagi.
    </p>

    <div class="time">
        11 Jul 2026 18:45:11    </div>

    <div class="footer">
        &copy; 2026 All Rights Reserved
    </div>
</div>

</body>
</html>
