<!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-color: #ffffff;
      color: #333333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
      text-align: center;
    }
    .warning-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 24px;
    }
    .warning-title {
      font-size: 24px;
      font-weight: bold;
      color: #d32f2f;
      margin-bottom: 16px;
    }
    .warning-message {
      font-size: 16px;
      color: #666666;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 400px;
    }
    .domain-info {
      font-size: 14px;
      color: #999999;
      word-break: break-all;
    }
  </style>
</head>
<body>
  <svg class="warning-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="12" cy="12" r="10" fill="#d32f2f"/>
    <path d="M12 7v6M12 16h.01" stroke="white" stroke-width="2" stroke-linecap="round"/>
  </svg>
  <h1 class="warning-title">拒绝访问</h1>
  <p class="warning-message">该网站可能存在恶意风险，已被用户多次举报。</p>
  <p class="domain-info">cryptobixor.com</p>
</body>
</html>