
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website Under Maintenance</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
            color: #fff;
        }

        .container {
            max-width: 700px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            text-align: center;
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .icon {
            font-size: 80px;
            color: #ffcb69;
            animation: spin 3s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        p {
            font-size: 1.2em;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        .progress-bar {
            width: 100%;
            height: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress {
            width: 0;
            height: 100%;
            background: #ffcb69;
            animation: progressAnimation 5s infinite;
        }

        @keyframes progressAnimation {
            0% { width: 0; }
            50% { width: 80%; }
            100% { width: 0; }
        }

        .contact-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #ffcb69;
            color: #1e3c72;
            text-decoration: none;
            font-weight: bold;
            border-radius: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            color: #fff;
            font-size: 24px;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ffcb69;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">⚙️</div>
        <h1>Sedang Dalam Pemeliharaan</h1>
        <p>Kami sedang bekerja keras untuk meningkatkan situs kami agar memberikan pengalaman terbaik untuk Anda. Mohon maaf atas ketidaknyamanan ini.</p>
        <p>Kami akan segera kembali! Terima kasih atas kesabaran Anda.</p>
        <div class="progress-bar">
            <div class="progress"></div>
        </div>
        <a href="https://linktr.ee/puncaktoto88" class="contact-btn">Link Alternatif Puncaktoto</a>
        <div class="social-links">
            <a href="https://twitter.com" target="_blank">🐦</a>
            <a href="https://facebook.com" target="_blank">📘</a>
            <a href="https://instagram.com" target="_blank">📸</a>
        </div>
    </div>
</body>
</html>