<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Welcome</title>
<style>
*{margin:0;padding:0;box-sizing:border-box}
body{min-height:100vh;display:flex;align-items:center;justify-content:center;
background:linear-gradient(135deg,#1a1a2e,#16213e,#0f3460);
font-family:"PingFang SC","Microsoft YaHei",sans-serif}
.card{text-align:center;color:#e0e0e0}
.card h1{font-size:48px;margin-bottom:12px}
.card p{font-size:18px;color:#888;margin-bottom:8px}
.dot{display:inline-block;width:10px;height:10px;background:#4ade80;
border-radius:50%;margin-right:6px;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.3}}
</style>
</head>
<body>
<div class="card">
<h1><span class="dot"></span></h1>
<p>Service Online</p>
<p style="font-size:13px">All systems operational</p>
</div>
</body>
</html>