.bslb-reaction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 20px 0 0 0;
}

.bslb-like-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    color: currentColor;
}

.bslb-like-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bslb-like-svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: fill 0.2s ease, stroke 0.2s ease;
    vertical-align: middle;
}

/* 点赞后的状态 */
.bslb-like-button.liked .bslb-like-svg {
    fill: #98c1d9;
    stroke: #98c1d9;
}

.bslb-like-count {
    color: currentColor;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

/* 动态效果：点赞按钮 pulse 动画 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}

.bslb-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.bslb-support-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    vertical-align: middle;
}
