/* public.css — linktree public page */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.25rem;
  border: 3px solid var(--border);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.profile-bio {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  max-width: 340px;
  margin-bottom: 0.5rem;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: filter 0.15s, transform 0.1s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.link-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.link-btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.empty {
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.footer-text {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  max-width: 380px;
  white-space: pre-wrap;
  line-height: 1.6;
}

.link-btn-locked {
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: inherit;
  opacity: 0.88;
}

.link-btn-locked:hover {
  opacity: 1;
}
