<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Security Verification</title>
    <style>
        :root { --bg: #f9fafb; --card: #ffffff; --border: #e5e7eb; --text: #111827; --muted: #6b7280; --primary: #111827; }
        body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif; background: var(--bg); color: var(--text); display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
        .card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; width: 100%; max-width: 360px; padding: 40px 24px; text-align: center; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
        .spinner { width: 32px; height: 32px; border: 3px solid #f3f4f6; border-top-color: #111827; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 24px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        h1 { font-size: 1.125rem; font-weight: 600; margin: 0 0 8px; }
        p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin: 0 0 32px; }
        .btn { display: block; width: 100%; background: var(--primary); color: #fff; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: opacity 0.2s; }
        .btn:hover { opacity: 0.9; }
        noscript { display: block; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); color: #dc2626; font-size: 0.875rem; font-weight: 500; }
    </style>
</head>
<body>
    <div class="card">
                    <div class="icon" style="margin-bottom:20px; color:#374151;">
                <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" style="margin:0 auto;" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>
            </div>
            <h1>Security Check</h1>
            <p>Please click the button below to verify you are human.</p>
            <form method="get">
                <button type="submit" name="verify" value="manual" class="btn">I am Human</button>
            </form>
                <noscript>
            <style>#verifying-ui, .icon, h1, p, form { display: none !important; }</style>
            <strong>JavaScript Required</strong><br>
            Please enable JavaScript to access this site.
        </noscript>
    </div>
</body>
</html>
