:root{
  --bg-start:#fbfdff;
  --bg-end:#ffffff;
  --muted:#6b7280;
  --accent:#0b74ff;
  --gap:14px;
  --icon-size:48px;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

html,body{height:100%;}
body{
  margin:0;
  min-height:100svh;
  background:linear-gradient(180deg,var(--bg-start) 0%,var(--bg-end) 60%);
  padding:20px;
  padding-top:calc(20px + env(safe-area-inset-top));
  color:#0f1724;
  overflow-x:hidden;
}

@supports (height:100dvh){
  body{min-height:100dvh;}
}

.container{
  width:100%;
  max-width:520px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:var(--gap);
  text-align:center;
  margin:0 auto;
}

.avatar{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.avatar img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

h1{
  margin:6px 0 0;
  font-size:1.125rem;
  font-weight:600;
  letter-spacing:-0.01em;
}

p.lead{
  margin:6px 0 0;
  color:var(--muted);
  font-size:0.975rem;
  max-width:48ch;
}

.social{
  margin-top:18px;
  width:100%;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.social img{
  width:50%;
  height:50%;
  object-fit:cover;
  display:block;
}

.social a{
  width:var(--icon-size);
  height:var(--icon-size);
  display:inline-grid;
  place-items:center;
  border-radius:12px;
  text-decoration:none;
  color:var(--accent);
  background:#fff;
  border:1px solid rgba(11,20,40,0.04);
  box-shadow:0 6px 12px rgba(12,40,70,0.04);
  font-weight:700;
  font-size:18px;
}

.social a .label{
  display:block;
  font-size:10px;
  color:var(--muted);
  margin-top:6px;
  text-align:center;
  font-weight:600;
}

.music{
  margin-top:2.5rem;
  display:grid;
  gap:1rem;
}

.music-title{
  font-size:1.1rem;
  font-weight:600;
  letter-spacing:.2px;
  margin:0;
}

.music-embeds{
  display:grid;
  gap:.75rem;
}

@media (min-width:700px){
  :root{--icon-size:56px;}
  .avatar img{width:200px;height:200px;}
}
