:root {
  --bg1:#0b0713; --bg2:#1b1230; --bg3:#2a1740;
  --text:#f5eeff; --muted:#a99bc2;
  --accent:#b58cff; --accent2:#ff7ad9;
  --line:rgba(255,255,255,.1);
}
* { box-sizing:border-box; }
html,body {
  margin:0; min-height:100%;
  background: radial-gradient(100% 100% at 50% 0%, rgba(27,18,48,.6) 0%, var(--bg1) 55%), radial-gradient(100% 100% at 100% 100%, var(--bg3) 0%, transparent 60%);
  background-color:var(--bg1);
  background-attachment:fixed;
  color:var(--text);
  overflow-x:hidden;
}
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height:1.5; }

.stars { position:fixed; inset:0; pointer-events:none; z-index:-1; }
.stars i { position:absolute; border-radius:50%; background:#fff; animation: floaty linear infinite; }
.stars::before, .stars::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(70% 45% at 0% 30%, rgba(181,140,255,.18), transparent 55%),
              radial-gradient(70% 45% at 100% 25%, rgba(255,122,217,.14), transparent 60%),
              radial-gradient(90% 50% at 50% 100%, rgba(181,140,255,.20), transparent 60%);
}

.wrap { position:relative; z-index:1; max-width:560px; margin:0 auto; padding:64px 20px 30px; }
.hero { text-align:center; }
.avatar {
  position:relative; z-index:2;
  width:148px; height:148px; border-radius:50%;
  object-fit:cover; border:3px solid var(--accent2);
  box-shadow:0 0 16px rgba(255,122,217,.22);
}
.name { font-size:34px; font-weight:800; margin:20px 0 2px; letter-spacing:-.6px;
  background: linear-gradient(90deg,var(--accent),#fff,var(--accent2));
  background-clip:text; -webkit-background-clip:text; color:transparent; }
.bio { color:var(--muted); font-size:16px; margin:8px 0; }

.links { list-style:none; margin:30px 0 0; padding:0; display:flex; flex-direction:column; gap:14px; }
.links a {
  display:flex; align-items:center; gap:16px; width:100%;
  padding:16px 18px; border-radius:16px;
  background: rgba(24,17,32,.55);
  border:1px solid var(--line);
  backdrop-filter: blur(6px);
  color:var(--text); text-decoration:none; font-weight:600;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.links a:hover {
  transform: translateY(-2px) scale(1.015);
  border-color:var(--accent);
  box-shadow:0 10px 26px rgba(181,140,255,.28);
}
.links a:active { transform: scale(.97); }
.links .ico {
  width:46px; height:46px; border-radius:12px; flex-shrink:0;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  display:grid; place-items:center; font-size:24px; color:#fff;
  box-shadow:0 0 12px rgba(181,140,255,.4);
}
.links .ico img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
.links .tg { margin-left:8px; display:inline-flex; }
.links .tg img { width:20px; height:20px; object-fit:contain; }
.links .go { margin-left:auto; color:var(--muted); font-size:20px; }

.fade-up { animation: fade .5s ease; }
@keyframes fade { from{opacity:0; transform:translateY(10px)} to{opacity:1} }
@keyframes floaty {
  from{ transform:translateY(0); opacity:0 }
  50%{ opacity:.9 }
  to{ transform:translateY(-60vh); opacity:0 }
}

@media (prefers-reduced-motion: reduce) {
  .stars i { display:none; }
  .fade-up { animation:none; }
}