.btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-follow.following {
    background: var(--gold);
    color: #000;
}
.btn-follow:hover {
    opacity: 0.85;
}
.btn-message {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--blue2);
    color: var(--blue2);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-message:hover {
    background: rgba(77, 159, 255, 0.1);
}
.fl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fl-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(240, 180, 41, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.fl-info {
    flex: 1;
}
.fl-username {
    font-weight: 700;
    font-size: 14px;
    color: var(--text1);
    text-decoration: none;
}
.fl-username:hover {
    color: var(--gold);
}
