.guide_like_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide_like_btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.guide_like_btn svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.guide_like_btn.liked {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    color: #fbbf24;
}

.guide_like_btn.liked svg {
    fill: #fbbf24;
    stroke: #fbbf24;
    animation: thumbsUpBounce 0.5s ease;
}

.guide_like_btn.liked:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.guide_like_btn:active {
    transform: scale(0.95);
}

.guide_like_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guide_like_btn.animating svg {
    animation: thumbsUpPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes thumbsUpPop {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.3) rotate(-15deg);
    }
    50% {
        transform: scale(1.4) rotate(15deg);
    }
    75% {
        transform: scale(1.2) rotate(-10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes thumbsUpBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.guide_like_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.guide_like_btn.animating::before {
    width: 100px;
    height: 100px;
    opacity: 0;
}

.guide_stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide_page_like_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide_page_like_btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.guide_page_like_btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.guide_page_like_btn.liked {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    color: #fbbf24;
}

.guide_page_like_btn.liked svg {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.guide_page_like_btn.liked:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.guide_page_like_btn:active {
    transform: scale(0.95);
}

.guide_page_like_btn.animating svg {
    animation: thumbsUpPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.guide_page_like_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.guide_page_like_btn.animating::before {
    width: 120px;
    height: 120px;
    opacity: 0;
}
