:root{
  --bg1:#bdbdbd;
  --bg2:#8f8f8f;
  --card:#efefefcc;
  --cardBorder:#ffffff55;
  --text:#111;
  --muted:#3a3a3a;
  --btn:#ffffffee;
  --btnBorder:#00000012;
  --shadow: 0 12px 35px rgba(0,0,0,.18);
  --radius: 22px;
  --maxw: 520px;
  --gap: 12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
}

.page{
  min-height:100%;
  padding: 28px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(1200px 700px at 50% 15%, #ffffff55, transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.card{
  width:min(var(--maxw), 100%);
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px;
}

.header{
  text-align:center;
  padding: 4px 8px 10px;
}

.avatar{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  margin: 0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #111;
  color:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  overflow:hidden;
}

.avatarText{
  font-weight: 700;
  letter-spacing: .5px;
}

.title{
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.subtitle{
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14.5px;
}

.social{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-bottom: 6px;
}

.socialBtn{
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: #ffffffcc;
  border: 1px solid var(--btnBorder);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.socialBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.links{
  display:flex;
  flex-direction:column;
  gap: var(--gap);
  padding: 10px 6px 14px;
}

.linkBtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width: 100%;
  gap: 10px;
  overflow: hidden;
  text-decoration:none;
  background: var(--btn);
  border: 1px solid var(--btnBorder);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transition: transform .12s ease, box-shadow .12s ease;
}

.linkBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,.14);
}

.linkLeft{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  flex: 1;
  min-width: 0;
}

.badge{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.linkTexts{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width: 0;
}

.linkTitle{
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.linkDesc{
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chev{
  opacity:.55;
  margin-left: 10px;
  flex: 0 0 auto;
}

.footer{
  text-align:center;
  padding-top: 6px;
}

.footerText{
  margin:0;
  font-size: 12px;
  color: #2f2f2f;
  opacity:.85;
}

/* Responsivo: em telas grandes fica "cartão central" (como seu print).
   Em telas muito pequenas, reduz espaços e fontes pra caber perfeito. */
@media (max-width: 380px){
  .card{ padding: 22px 14px 14px; }
  .title{ font-size: 24px; }
  .subtitle{ font-size: 13.5px; }
  .linkBtn{ padding: 13px 12px; }
  .badge{ width: 40px; height: 40px; }
}
