<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="Retry-After" content="3600">
    <title>We'll Be Back Soon</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #1f1c2c, #928dab);
            color: #ffffff;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            max-width: 800px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        p {
            font-size: 1.0rem;
            line-height: 1.5;
            margin-bottom: 2rem;
        }
        .countdown {
            font-size: 1.0rem;
            font-weight: bold;
            color: #00ffcc;
        }
        a {
            text-decoration: none;
            color: #ffd700;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🚧 Maintenance in Progress 🚧</h1>
        <p>We're working hard to improve your experience. Our site is temporarily unavailable while we perform some scheduled maintenance.</p>
        <p>Thank you for your patience!</p>
    </div>
</body>
</html>
