<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Service Unavailable</title>
    <style>
        body { 
            background-color: #121212; 
            color: #eeeeee; 
            font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            height: 100vh; 
            margin: 0; 
        }
        .container { 
            text-align: center; 
            padding: 2.5rem; 
            border: 1px solid #333; 
            border-radius: 12px; 
            background: #1e1e1e;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            max-width: 400px;
        }
        h1 { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; color: #ffffff; }
        p { line-height: 1.5; color: #b0b0b0; margin: 0; }
        .divider { height: 1px; background: #333; margin: 1.5rem 0; }
    </style>
</head>
<body>
    <div class="container">
        <h1>Service Unavailable</h1>
        <p>The service normally available here is currently down for maintenance.</p>
        <div class="divider"></div>
        <p style="font-size: 0.9rem;">Please come back at a later date.</p>
    </div>
</body>
</html>