:root{
  --bg0:#090013;
  --bg1:#0b0f2a;
  --card:rgba(255,255,255,.08);
  --card2:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.62);
  --stroke:rgba(255,255,255,.14);
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius:18px;
}

*{ 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;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(255,43,214,.22), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(0,229,255,.18), transparent 55%),
    radial-gradient(900px 700px at 45% 95%, rgba(124,60,255,.20), transparent 55%),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.shell{
  width:min(860px, 100%);
  display:flex;
  justify-content:center;
}

.card{
  width:min(560px, 100%);
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.inner{
  padding:28px 22px 22px;
}

header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
  padding-bottom:20px;
}

/* Circular avatar */
.avatar{
  width:110px;
  height:110px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

h1{
  margin:0;
  font-size:22px;
}

.bio{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.links{
  display:grid;
  gap:14px;
  margin-top:8px;
}

.link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.05));
  text-decoration:none;
  color:var(--text);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.link:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.25);
  background: linear-gradient(180deg, var(--card2), rgba(255,255,255,.07));
}

.left{
  display:flex;
  align-items:center;
  gap:12px;
}

/* PNG icons */
.icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
}

.icon img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.label{
  display:flex;
  flex-direction:column;
}

.label strong{
  font-size:14px;
}

.label small{
  font-size:12px;
  color:var(--muted);
}

.arrow{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  font-size:14px;
}

footer{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.55);
  font-size:12px;
  text-align:center;
}
