:root{
  --bg:#000000;
  --card:#000000;
  --text:#e6eef8;
  --muted:#9aa7bf;
  --accent:#207d29;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.card{
  width:min(680px,100%);
  background:var(--card);
  border-radius:14px;
  padding:32px;
  text-align:center;
  box-shadow:0 6px 30px rgba(2,6,23,0.08);
}
.avatar img{width:120px;height:120px;margin-bottom:12px}
.name{margin:0 0 18px;font-size:1.6rem}
.links{display:flex;flex-direction:column;gap:12px;align-items:center;margin-bottom:18px}
.btn{display:inline-block;width:100%;max-width:420px;padding:12px 16px;border-radius:10px;background:linear-gradient(90deg,var(--accent),#0f0f0f);color:white;text-decoration:none;font-weight:600}
.btn:hover{transform:translateY(-2px)}
.social{display:flex;gap:12px;justify-content:center;color:var(--muted);margin-top:10px}
.social a{color:inherit;text-decoration:none;padding:6px 10px;border-radius:8px}
.footer{margin-top:18px}