<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<meta name="description" content="Halaman ini sedang dalam pengembangan dan belum tersedia untuk publik.">
<style>
body {
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
margin: 0;
text-align: center;
padding: 20px;
}
.construction-icon {
font-size: 5rem;
margin-bottom: 1.5rem;
animation: pulse 2s infinite;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
p {
color: #dddddd;
font-size: 1.2rem;
max-width: 600px;
line-height: 1.6;
}
footer {
margin-top: 2rem;
font-size: 0.9rem;
color: #bbbbbb;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<div class="construction-icon">🚧</div>
<h1>SEDANG DALAM PENGEMBANGAN</h1>
<p>Kami sedang menyiapkan pengalaman terbaik untuk Anda. Silakan kembali dalam beberapa waktu lagi.</p>
<footer>
<p>© 2025 Situs ini sedang dalam pengembangan.</p>
</footer>
</body>
</html>