.like-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s ease;
}

.like-btn:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.25);
    color: #f87171;
}

.like-btn:active {
    transform: scale(0.96);
}

.like-btn .btn-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.like-btn:hover .btn-icon {
    stroke: #f87171;
    transform: scale(1.1);
}

.like-btn .btn-text {
    font-variant-numeric: tabular-nums;
}

.like-btn.liked {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.25);
    color: #f87171;
}

.like-btn.liked .btn-icon {
    stroke: #f87171;
    fill: #f87171;
}

.like-btn.liked:hover {
    background: rgba(248, 113, 113, 0.18);
    border-color: rgba(248, 113, 113, 0.35);
}

.like-btn.animating .btn-icon {
    animation: heartPop 0.4s ease;
}

.like-btn .btn-icon.breaking {
    animation: heartBreak 0.5s ease;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes heartBreak {
    0% { transform: scale(1); opacity: 1; }
    20% { transform: scale(1.1); opacity: 1; }
    40% { transform: scale(0.6) rotate(-10deg); opacity: 0.7; }
    60% { transform: scale(0.4) rotate(10deg); opacity: 0.4; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
