.post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 14px;
}

.like-btn,
.reply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

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

.like-btn .btn-text,
.reply-btn .btn-text {
    font-size: 13px;
    font-weight: 500;
}

.like-btn .btn-count,
.reply-btn .btn-count {
    opacity: 0.7;
}

.like-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.like-btn:hover .btn-icon {
    transform: scale(1.15);
}

.like-btn.liked {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

.like-btn.animating .btn-icon {
    animation: heartPop 0.4s 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); }
}

.reply-btn:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.reply-btn:hover .btn-icon {
    transform: scale(1.1);
}

.reply-btn.active {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.view-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    height: 32px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.view-counter svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 480px) {
    .post-actions {
        gap: 8px;
        padding: 8px 12px 12px;
    }
    
    .like-btn,
    .reply-btn {
        height: 30px;
        padding: 0 10px;
        gap: 5px;
        border-radius: 6px;
    }
    
    .like-btn .btn-icon,
    .reply-btn .btn-icon {
        width: 14px;
        height: 14px;
    }
    
    .like-btn .btn-text,
    .reply-btn .btn-text {
        font-size: 12px;
    }
    
    .view-counter {
        height: 30px;
        font-size: 11px;
        gap: 4px;
    }
    
    .view-counter svg {
        width: 12px;
        height: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .like-btn,
    .reply-btn {
        transition: none;
    }
    
    .like-btn.animating .btn-icon {
        animation: none;
    }
}

.translation-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 16px 8px;
    padding: 8px 12px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.translation-notice::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(96,165,250,0.8)" stroke-width="2"><path d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4"/></svg>') center/contain no-repeat;
    flex-shrink: 0;
}

.translation-link {
    color: #60a5fa;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 4px;
}

.translation-link:hover {
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.1);
}

.comment-translation-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0;
    padding: 6px 10px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.comment-translation-notice::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(96,165,250,0.8)" stroke-width="2"><path d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4"/></svg>') center/contain no-repeat;
    flex-shrink: 0;
}

.comment-translation-notice .translation-link {
    font-size: 11px;
}
