<?php
http_response_code(200);
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站已暂停</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
        }
        .container {
            background: white;
            border-radius: 12px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            margin: 20px;
        }
        .icon {
            font-size: 72px;
            margin-bottom: 20px;
        }
        h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
        }
        p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .domain {
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 14px;
            color: #667eea;
            margin: 20px 0;
            display: inline-block;
        }
        .footer {
            margin-top: 30px;
            font-size: 12px;
            color: #999;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">⏸️</div>
        <h1>网站已暂停</h1>
        <p>您访问的站点暂时不可用</p>
        <div class="domain"><?php echo htmlspecialchars($_SERVER['HTTP_HOST'] ?? $_SERVER['SERVER_NAME']); ?></div>
        <p>如有疑问，请联系网站管理员。</p>
        <p>温馨提示：禁止使用该域名接入违法违规内容！</p>
        <div class="footer">CDN Proxy Service</div>
    </div>
</body>
</html>
