<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Situs Sedang Maintenance</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
color: #fff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
flex-direction: column;
}
.container {
max-width: 90%;
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
box-shadow: 0 0 10px rgba(255,255,255,0.1);
}
h1 {
font-size: 28px;
margin-bottom: 15px;
}
p {
font-size: 16px;
line-height: 1.6;
}
@media (min-width: 600px) {
h1 {
font-size: 36px;
}
p {
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>🚧 Website Under Maintenance</h1>
<p>We are currently making improvements to the system to provide a better experience.<br>
Please come back later. Thank you for understanding!</p>
</div>
</body>
</html>