:root{
  --bg:#0f1724;
  --card:#0b1220;
  --accent:#6ee7b7;
  --muted:#a3adbf;
  --glass: rgba(255,255,255,0.03);
  --radius:16px;
  --maxw:720px;
  --gap:18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,#07102a 0%, #081428 100%);
  color:#e6eef8;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.card{
  width:100%;
  max-width:var(--maxw);
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  padding:32px;
  box-shadow:0 8px 30px rgba(2,6,23,0.7);
  text-align:center;
  border:1px solid rgba(255,255,255,0.03);
}

.logo{
  display:inline-block;
  font-weight:700;
  color:var(--accent);
  background:linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding:8px 14px;
  border-radius:10px;
  margin-bottom:12px;
  letter-spacing:1px;
}

h1{
  margin:8px 0 10px;
  font-size:clamp(20px,3vw,32px);
  line-height:1.05;
}

.lead{
  color:var(--muted);
  margin:0 0 18px;
  font-size:15px;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--glass);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  margin-bottom:18px;
  font-size:14px;
}

.dot{
  width:10px;
  height:10px;
  background:var(--accent);
  display:inline-block;
  border-radius:50%;
  box-shadow:0 0 12px rgba(110,231,183,0.35);
}

.actions{
  display:flex;
  gap:12px;
  justify-content:center;
  margin:18px 0 24px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  color:#071428;
  background:var(--accent);
  font-weight:600;
  transition:transform .12s ease;
}

.btn:hover{ transform: translateY(-3px) }

.btn.ghost{
  background:transparent;
  color:var(--muted);
  border:1px solid rgba(255,255,255,0.04);
  box-shadow:none;
}

footer{ color:var(--muted); font-size:13px; margin-top:6px }
