* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.biolinks {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.biolinks-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.biolinks-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    object-fit: cover;
}

.biolinks-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.biolinks-bio {
    color: #666;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.4;
}

.biolinks-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.biolinks-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.biolinks-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.biolinks-social svg {
    width: 20px;
    height: 20px;
}

.biolinks-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.biolinks-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.biolinks-link:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.biolinks-link-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent);
}

.biolinks-link-name {
    flex: 1;
    text-align: center;
    padding-right: 20px;
}

.biolinks-footer {
    margin-top: 1rem;
    color: #aaa;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.biolinks-footer:hover {
    color: #666;
}
