.hero-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--hero-radius);
  box-shadow: var(--shadow);
  padding: 30px 22px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-pattern {
  height: var(--cover-height);
  margin: -30px -22px 0;
  background-position: var(--cover-position, center center);
  background-repeat: repeat;
  background-size: cover;
  border-bottom: 1px solid var(--border);
}

.avatar {
  width: 122px;
  height: 122px;
  border-radius: 15%;
  object-fit: cover;
  margin: -61px auto 0;
  border: 5px solid rgba(14, 20, 29, 0.95);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  background: #0f1721;
}

.hero-card h1 {
  margin: 14px 0 6px;
  font-size: 32px;
  line-height: 1.1;
}

.tag {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.bio {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 18px;
}

.meta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta span,
.legal-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}

.links {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(18, 29, 43, 0.88);
}

.link-image {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 72px;
  background: #111923;
}

.link-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-copy em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.link-copy strong {
  font-size: 19px;
}

.link-copy small {
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  margin-left: auto;
  font-size: 26px;
  color: var(--muted);
}

.footer {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}
