<!DOCTYPE html>
            <html lang="zh-CN">
            <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Access Restricted | 区域限制</title>
            <style>
            *{margin:0;padding:0;box-sizing:border-box}
            body{
                background:#f8f9fa;
                font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
                display:flex;
                align-items:center;
                justify-content:center;
                min-height:100vh;
                padding:20px;
                color:#333;
            }
            .container{
                max-width:520px;
                width:100%;
                background:#fff;
                border-radius:16px;
                box-shadow:0 8px 24px rgba(0,0,0,0.08);
                padding:48px 32px;
                text-align:center;
            }
            h1{
                font-size:26px;
                color:#d93025;
                margin-bottom:24px;
                line-height:1.4;
            }
            p{
                font-size:16px;
                line-height:1.8;
                color:#555;
                margin-bottom:12px;
            }
            .en{
                color:#666;
                font-size:15px;
                margin-top:8px;
            }
            .footer{
                margin-top:32px;
                font-size:13px;
                color:#999;
            }
            </style>
            </head>
            <body>
            <div class="container">
                <h1>当前区域无法访问</h1>
                <p>根据合规与安全策略，您所在的国家或地区暂不提供服务。</p>
                <p class="en">Access to this service is restricted in your country/region due to compliance and security policies.</p>
                <div class="footer">Region Restricted • 区域访问限制</div>
            </div>
            </body>
            </html>