
<!DOCTYPE html>
<html>
<head>
<title>API Gateway Status</title>
<meta name="viewport" content="width=device-width, initial-scale=1">

<style>
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #020617, #020617);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 44px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  max-width: 520px;
  width: 92%;
  text-align: left;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #22c55e;
  color: #052e16;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

pre {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  color: #e5e7eb;
  font-size: 14px;
  overflow-x: auto;
  line-height: 1.6;
}

.key { color: #60a5fa; }
.string { color: #34d399; }
.number { color: #fbbf24; }

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
</style>
</head>

<body>

<div class="card">
  <h1>API Gateway</h1>
  <div class="badge">ONLINE</div>

  <pre>{
  <span class="key">"status"</span>: <span class="string">"online"</span>,
  <span class="key">"service"</span>: <span class="string">"API Gateway"</span>,
  <span class="key">"domain"</span>: <span class="string">"aichatbot.leco.lk"</span>,
  <span class="key">"version"</span>: <span class="string">"v1.0"</span>,
}</pre>
</div>

<div class="footer">
Powered by Yenasys
</div>

</body>
</html>