<?php
declare(strict_types=1);

http_response_code(503);
header('Content-Type: text/html; charset=utf-8');
header('Retry-After: 86400');
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Pragma: no-cache');
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="robots" content="noindex, nofollow">
    <title>Account Suspended</title>
    <style>
        :root {
            --bg: #f4f4f5;
            --card: #ffffff;
            --text: #18181b;
            --muted: #71717a;
            --accent: #b45309;
            --border: #e4e4e7;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            min-height: 100%;
        }

        body {
            font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            line-height: 1.5;
        }

        .card {
            width: 100%;
            max-width: 480px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px 32px;
            text-align: center;
        }

        .icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 20px;
            color: var(--accent);
        }

        h1 {
            font-size: 1.375rem;
            font-weight: 650;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        p + p {
            margin-top: 12px;
        }

        .code {
            display: inline-block;
            margin-top: 24px;
            font-size: 0.75rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
        }
    </style>
</head>
<body>
    <main class="card">
        <svg class="icon" viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <rect x="5" y="11" width="14" height="10" rx="2" stroke="currentColor" stroke-width="1.75"/>
            <path d="M8 11V8a4 4 0 0 1 8 0v3" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
        </svg>
        <h1>Account suspended</h1>
        <p>This website is unavailable. The account associated with it has been suspended.</p>
        <p>If you are the owner and believe this is a mistake, contact the hosting provider or support.</p>
        <span class="code">HTTP 503</span>
    </main>
</body>
</html>
