:root{
  --bg0:#070A14;
  --bg1:#0A1022;
  --text:#f3f6ff;
  --muted:#a9b4d6;
  --stroke:#ffffff14;
  --cardShadow:0 22px 70px rgba(0,0,0,.55);
  --verified:#1DA1F2;
  --btnFallback:#0b0b0b;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 700px at 20% 15%,rgba(124,92,255,.18),transparent 55%),
    radial-gradient(900px 700px at 80% 25%,rgba(0,229,255,.14),transparent 55%),
    radial-gradient(1200px 800px at 50% 110%,rgba(255,79,216,.10),transparent 60%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
  background-attachment:fixed;
}

.wrap{
  min-height:100svh;
  display:flex;
  justify-content:center;
  padding:18px;
}

.frame{width:min(420px,100%)}

.card{
  padding:30px 22px 32px;
  border-radius:26px;
  border:1px solid var(--stroke);
  background:linear-gradient(180deg,rgba(10,16,34,.75),rgba(8,12,24,.75));
  backdrop-filter:blur(10px);
  box-shadow:var(--cardShadow);
  text-align:center;
}

.header{margin-bottom:24px}

.avatar{
  width:108px;
  height:108px;
  margin:0 auto 18px;
  border-radius:50%;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.title{
  margin:0;
  font-size:32px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.subtitle{
  margin-top:6px;
  color:var(--muted);
  font-size:14px;
}

.verified{
  display:none;
  color:var(--verified);
  font-size:22px;
  transform:translateY(2px);
}

.card[data-verified="true"] .verified{display:inline-block}

.section{
  margin:24px 0 12px;
  font-size:18px;
  font-weight:800;
}

.btns{
  display:grid;
  gap:12px;
}

.btn{
  height:52px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  background:var(--btnFallback);
  transition:transform .15s ease,filter .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.btn-inner{
  display:flex;
  align-items:center;
  gap:10px;
}

.icon-bubble{
  width:22px;
  height:22px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.10);
}

.site-icon{
  width:18px;
  height:18px;
  object-fit:contain;
}

.btn[data-brand="instagram"]{background:linear-gradient(90deg,#9c0505,#992f82)}
.btn[data-brand="ytm"]{background:#9c0505}
.btn[data-brand="apple"]{background:linear-gradient(180deg,#ff4f73,#ad1f40)}
.btn[data-brand="deezer"]{background:linear-gradient(90deg,#ffae00,#992f82,#0e8491,#15863d)}
.btn[data-brand="spotify"]{background:#15863d}
.btn[data-brand="amazon"]{background:#111}
.btn[data-brand="tiktok"]{background:#111}
.btn[data-brand="x"]{background:#0b0b0b}

.footer-link{
  display:inline-block;
  margin-top:24px;
  color:#1ea7ff;
  font-weight:700;
  text-decoration:none;
}

@media (max-width:360px){
  .card{padding:26px 18px 28px}
  .avatar{width:92px;height:92px}
  .title{font-size:30px}
}
