
<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>OpenXception Upstream</title>

<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0f172a;
    color:#ffffff;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.card{
    width:560px;
    padding:48px;
    text-align:center;
    background:#1e293b;
    border:1px solid #334155;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.status{
    display:inline-block;
    background:#16a34a;
    color:white;
    padding:8px 18px;
    border-radius:999px;
    font-weight:600;
    margin-bottom:24px;
}

h1{
    font-size:34px;
    margin-bottom:16px;
}

p{
    color:#cbd5e1;
    font-size:17px;
    line-height:1.6;
}

.host{
    margin-top:28px;
    font-family:monospace;
    color:#38bdf8;
    font-size:17px;
}

.footer{
    margin-top:36px;
    color:#64748b;
    font-size:13px;
}

</style>

</head>

<body>

<div class="card">

<div class="status">
✓ Upstream Online
</div>

<h1>OpenXception</h1>

<p>
The upstream server is running correctly and ready.
</p>

<div class="host">
upstream.openxception.site
</div>

<div class="footer">
Nginx • Ready for cdn
</div>

</div>

</body>

</html>