<!DOCTYPE html>
<html lang="zh-HK">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>WeProperty - 維護中</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;
      padding: 20px;
    }

    .container {
      text-align: center;
      background: white;
      padding: 60px 40px;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      max-width: 500px;
    }

    .logo {
      font-size: 48px;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 32px;
      color: #333;
      margin-bottom: 10px;
      font-weight: 600;
    }

    h2 {
      font-size: 18px;
      color: #666;
      font-weight: 400;
      margin-bottom: 30px;
    }

    .message {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      text-align: left;
    }

    .status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 20px 0;
      padding: 15px;
      background: #f0f4ff;
      border-radius: 8px;
    }

    .status-dot {
      width: 12px;
      height: 12px;
      background: #ffa500;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }

    .footer {
      color: #999;
      font-size: 14px;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .uat-link {
      margin-top: 20px;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 8px;
      font-size: 14px;
    }

    .uat-link a {
      color: #667eea;
      text-decoration: none;
      font-weight: 500;
    }

    .uat-link a:hover {
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="logo">🏗️</div>
    <h1>WeProperty 維護中</h1>
    <h2>WeProperty is Under Maintenance</h2>

    <div class="message">
      <p>我們正在進行系統維護和升級，以為您提供更好的服務。</p>
      <p style="margin-top: 15px; font-size: 14px; color: #999;">
        We are performing system maintenance and upgrades to provide you with a better service.
      </p>
    </div>

    <div class="status">
      <div class="status-dot"></div>
      <span>預計將於今天完成 | Expected to be completed today</span>
    </div>

    <div class="uat-link">
      <p>🧪 <strong>Testing 版本：</strong><br>
      <a href="https://weproperty-uat.vercel.app" target="_blank">weproperty-uat.vercel.app</a></p>
      <p style="margin-top: 10px; font-size: 12px; color: #999;">
        (For testing and evaluation)
      </p>
    </div>

    <div class="footer">
      <p>感謝您的耐心。<br>Thank you for your patience.</p>
    </div>
  </div>
</body>
</html>
