<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Application Not Found</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: #0f172a;
            color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }
        .container {
            text-align: center;
            max-width: 480px;
        }
        .logo {
            font-size: 64px;
            margin-bottom: 24px;
        }
        h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #f8fafc;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            color: #94a3b8;
            margin-bottom: 8px;
        }
        .domain {
            display: inline-block;
            background: #1e293b;
            border: 1px solid #334155;
            border-radius: 6px;
            padding: 4px 12px;
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            font-size: 14px;
            color: #38bdf8;
            margin-top: 12px;
        }
        .panel-link {
            margin-top: 32px;
            display: inline-block;
            color: #38bdf8;
            text-decoration: none;
            font-size: 14px;
        }
        .panel-link:hover { text-decoration: underline; }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">🛡️</div>
        <h1>Application Not Found</h1>
        <p>This domain is not configured in MagicByte Gate.</p>
        <p class="domain">account.dayzplay.ru</p>
        <p style="margin-top: 24px; font-size: 14px;">If you are the administrator, add this domain to an application in the panel.</p>
    </div>
</body>
</html>