
:root{
  --bg:#0b0b0d;
  --panel:#111114;
  --card:#19191f;
  --text:#e9e9ee;
  --muted:#a8a8ae;
  --ring:#2a2a31;
  --accent:#c7f284;
  --shadow: 0 14px 36px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 10% -10%, #101012, transparent), var(--bg);
  color:var(--text);
}
.wrap{max-width:720px; margin:0 auto; padding:28px 16px 80px;}
.card{background:var(--card); border:1px solid var(--ring); border-radius:22px; box-shadow:var(--shadow)}
.header{display:flex; flex-direction:column; align-items:center; gap:10px; padding:28px 20px; text-align:center}
.avatar{width:86px; height:86px; border-radius:999px; border:1px solid var(--ring); background:#0f0f12; padding:10px}
h1{margin:12px 0 0; font-size:1.7rem}
.bio{margin:6px 0 0; color:var(--muted)}

.socials{display:flex; gap:16px; margin-top:12px}
.social{display:grid; place-items:center; width:34px; height:34px; border-radius:999px; border:1px solid var(--ring); background:#0f0f12}
.social svg{width:18px; height:18px; color:#fff; opacity:.9}
.social:hover{border-color:var(--accent)}

.buttons{display:flex; flex-direction:column; gap:14px; margin-top:22px}
.btn{display:flex; align-items:center; justify-content:center; padding:18px 20px; border-radius:999px; transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease}
.btn:hover{transform:translateY(-1px); border-color:var(--accent); box-shadow:0 10px 24px rgba(0,0,0,.4)}
.btn .label{font-weight:600; letter-spacing:.2px}

.footer{text-align:center; color:var(--muted); margin-top:20px}
