.bio-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: #131515;
    background: #fcfcfc;
    --bio-accent: #4D977C;
    --bio-accent-soft: #eaf4ef;
    --bio-card: #fff;
    --bio-border: #eaedf0;
    --bio-muted: #525870;
}

.bio-theme-cream {
    background: #faf7f2;
    --bio-accent: #c4784a;
    --bio-accent-soft: #f3e7dc;
}

.bio-theme-green {
    background: #f2f8f6;
    --bio-accent: #4D977C;
    --bio-accent-soft: #eaf4ef;
}

.bio-theme-orange {
    background: #fff6ef;
    --bio-accent: #e67a35;
    --bio-accent-soft: #ffe8d6;
}

.bio-theme-dark {
    color: #f8f9fa;
    background: #0a171f;
    --bio-accent: #78baa1;
    --bio-accent-soft: #18191b;
    --bio-card: #18191b;
    --bio-border: rgba(255, 255, 255, 0.12);
    --bio-muted: #a8b0c0;
}

.bio-shell {
    width: min(460px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 40px;
}

.bio-header {
    text-align: center;
    margin-bottom: 28px;
}

.bio-avatar,
.bio-avatar-img {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--bio-accent-soft);
    border: 2px solid var(--bio-accent);
    color: var(--bio-accent);
    object-fit: cover;
}

.bio-name {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.bio-headline {
    margin: 0;
    color: var(--bio-muted);
    line-height: 1.5;
}

.bio-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.bio-social {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--bio-border);
    background: var(--bio-card);
    color: inherit;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.bio-social:hover {
    border-color: var(--bio-accent);
    color: var(--bio-accent);
}

.bio-links {
    display: grid;
    gap: 12px;
}

.bio-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 16px 18px;
    border-radius: 999px;
    background: var(--bio-card);
    border: 1px solid var(--bio-border);
    box-shadow: 0 10px 30px rgba(19, 21, 21, 0.04);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.bio-link:hover {
    transform: translateY(-2px);
    border-color: var(--bio-accent);
}

.bio-theme-dark .bio-link {
    box-shadow: none;
}

.bio-empty {
    text-align: center;
    color: var(--bio-muted);
}

.bio-footer {
    margin-top: 36px;
    text-align: center;
}

.bio-footer a {
    color: inherit;
    opacity: 0.55;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.bio-footer a:hover {
    opacity: 0.9;
}
