.linkbio-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.4rem 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.linkbio-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 3px solid var(--cream);
  box-shadow: 0 8px 30px rgba(43, 31, 51, 0.18);
  margin-bottom: 1.2rem;
}

.linkbio-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  margin: 0.1em 0 1.6rem;
}

.linkbio-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  max-width: 420px;
}

.linkbio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.linkbio-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}
.linkbio-card .title {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.linkbio-card small {
  display: block;
  margin-top: 0.15rem;
  opacity: 0.6;
  font-size: 0.8rem;
}
.linkbio-card .arrow {
  opacity: 0.45;
  margin-left: 1rem;
  flex-shrink: 0;
}

.linkbio-footer {
  position: static;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .linkbio-footer {
    flex-wrap: wrap;
    row-gap: 0.6rem;
    justify-content: center;
    text-align: center;
  }
  .linkbio-footer .lang-switch {
    position: static;
    transform: none;
    order: -1;
    flex-basis: 100%;
    justify-content: center;
  }
}
