:root{
  --bg: #14b8a6;
  --bg-image: none;
  --text-color: #ffffff;
  --sub-color: rgba(255,255,255,.85);
  --btn-bg: #22c55e;
  --btn-text: #ffffff;
  --btn-radius: 16px;
  --shadow-color: 0,0,0;
  --shadow-opacity: .25;
  --shadow-blur: 14px;
  --shadow-y: 6px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --align: flex-start;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:var(--font);
  min-height:100vh;
  background: var(--bg-image), var(--bg);
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}
.app{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:var(--align);
  padding:32px 16px 90px;
  color:var(--text-color);
}
.loading{padding-top:80px;opacity:.7;font-size:14px;}

.profile{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:24px;
  max-width:480px;
  width:100%;
}
.avatar{
  width:96px;height:96px;border-radius:50%;
  object-fit:cover;
  background:#fff;
  border:3px solid rgba(255,255,255,.6);
  box-shadow:0 4px 16px rgba(0,0,0,.2);
  margin-bottom:14px;
}
.profile h1{
  font-size:22px;margin:0 0 4px;color:var(--text-color);
  display:flex;align-items:center;gap:6px;justify-content:center;
}
.profile .bio{margin:0 0 14px;color:var(--sub-color);font-size:14px;}

.socials{
  display:flex;gap:14px;margin-bottom:8px;flex-wrap:wrap;justify-content:center;
}
.socials a{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.18);
  color:var(--text-color);
  font-size:16px;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease;
}
.socials a:hover{background:rgba(255,255,255,.32);transform:translateY(-2px);}

.links{
  width:100%;max-width:480px;
  display:flex;flex-direction:column;gap:14px;
}
.link-btn{
  display:flex;align-items:center;gap:12px;
  width:100%;
  padding:16px 18px;
  background:var(--btn-bg);
  color:var(--btn-text);
  border-radius:var(--btn-radius);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  box-shadow:0 var(--shadow-y) var(--shadow-blur) rgba(var(--shadow-color), var(--shadow-opacity));
  transition:transform .12s ease, box-shadow .12s ease;
  position:relative;
}
.link-btn:active{transform:scale(.98);}
.link-btn .link-icon{
  width:28px;height:28px;border-radius:8px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.25);
  flex-shrink:0;font-size:14px;
}
.link-btn .link-icon img{width:100%;height:100%;object-fit:cover;}
.link-btn .link-title{flex:1;text-align:center;}

.wa-float{
  position:fixed;right:18px;bottom:18px;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.3);
  z-index:50;
}

.footer-tag{
  margin-top:28px;font-size:12px;color:var(--sub-color);opacity:.7;
}
