* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(160deg, #1e1e2f, #0f0f1a);
  color: #fff;
}

.card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--theme, #6c5ce7);
}

h1 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

#bio {
  margin: 0 0 32px;
  color: #c9c9d6;
  font-size: 0.95rem;
  line-height: 1.4;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #24243a;
  border: 1px solid #35355a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}

.link-btn:hover {
  background: var(--theme, #6c5ce7);
  transform: translateY(-2px);
}

.link-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.link-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme, #6c5ce7);
  color: #fff;
  font-size: 1rem;
}

.link-title {
  text-align: left;
}

.empty {
  color: #888;
  font-size: 0.9rem;
}
