<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Service Status</title>
<style>
*{box-sizing:border-box}
body{margin:0;min-height:100vh;display:flex;align-items:center;justify-content:center;background:#0f1115;color:#f3f4f6;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif}
.card{width:min(440px,calc(100% - 32px));padding:36px;border:1px solid #272b33;border-radius:20px;background:#171a20;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.35)}
.dot{width:12px;height:12px;display:inline-block;margin-right:8px;border-radius:50%;background:#22c55e}
.status{color:#86efac;font-size:14px;font-weight:600;margin-bottom:22px}
h1{margin:0 0 10px;font-size:26px}
p{margin:0;color:#9ca3af;font-size:15px;line-height:1.6}
.footer{margin-top:24px;padding-top:18px;border-top:1px solid #272b33;color:#6b7280;font-size:12px}
</style>
</head>
<body>
<main class="card">
<div class="status"><span class="dot"></span>Operational</div>
<h1>Service is running</h1>
<p>The service is online and responding normally.</p>
<div class="footer">All systems operational</div>
</main>
</body>
</html>