<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>UAT - Equals Corporate Loans</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, #2d8cf0 0%, #1a5276 100%);
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            color: white; padding: 20px;
        }
        .container {
            text-align: center; max-width: 600px; padding: 40px;
            background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
            border-radius: 20px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        h1 { font-size: 48px; margin-bottom: 20px; font-weight: 700; }
        .subtitle { font-size: 24px; margin-bottom: 10px; font-weight: 300; opacity: 0.9; }
        .env-badge {
            display: inline-block; background: rgba(255, 165, 0, 0.8); padding: 5px 20px;
            border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 30px;
        }
        .footer { margin-top: 40px; font-size: 14px; opacity: 0.7; }
    </style>
</head>
<body>
    <div class="container">
        <h1>Equals Corporate Loans</h1>
        <div class="subtitle">Equals Engineering</div>
        <div class="env-badge">UAT ENVIRONMENT</div>
        <div class="footer">
            <p>&copy; 2025 Equals Engineering. All rights reserved.</p>
        </div>
    </div>
</body>
</html>