.weibo-comment-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.weibo-comment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.weibo-comment-item {
    display: flex;
    gap: 10px;
}

.weibo-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.weibo-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weibo-comment-content {
    flex: 1;
}

.weibo-comment-username {
    font-weight: 500;
    font-size: 13px;
    color: #333;
    margin-right: 8px;
}

.weibo-comment-text {
    font-size: 13px;
    color: #666;
}

.weibo-comment-time {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

.weibo-comment-form {
    display: flex;
    gap: 10px;
}

.weibo-comment-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #ffe0d0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.weibo-comment-input:focus {
    border-color: #ff6b35;
}

.weibo-comment-submit {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.weibo-comment-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.weibo-comment-actions {
    margin-top: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.weibo-comment-reply-btn {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.weibo-comment-reply-btn:hover {
    color: #ff6b35;
}

.weibo-comment-delete-btn {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.weibo-comment-delete-btn:hover {
    color: #e74c3c;
}

.weibo-comment-replies {
    margin-left: 42px;
    margin-top: 10px;
    padding-left: 12px;
    border-left: 2px solid #f0f0f0;
}

.weibo-comment-replies .weibo-comment-item {
    margin-bottom: 8px;
}

.weibo-comment-replies .weibo-comment-avatar {
    width: 24px;
    height: 24px;
}

.weibo-comment-replies .weibo-comment-content {
    font-size: 12px;
}

.weibo-reply-to {
    color: #ff6b35;
    font-weight: 500;
}

.weibo-reply-form {
    margin-top: 8px;
    padding-left: 42px;
    display: none;
}

.weibo-reply-form.show {
    display: flex;
}

.weibo-reply-form .weibo-comment-input {
    padding: 8px 12px;
    font-size: 13px;
}

.weibo-reply-form .weibo-comment-submit {
    padding: 6px 14px;
    font-size: 13px;
}

.weibo-more-replies-btn {
    font-size: 12px;
    color: #ff6b35;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 4px;
}

.weibo-more-replies-btn:hover {
    text-decoration: underline;
}

.weibo-hidden-replies {
    display: none;
}

.weibo-hidden-replies.show {
    display: block;
}

.weibo-comment-item.highlight {
    background: #fff8f5;
    border-radius: 8px;
    animation: weiboHighlightFade 2s ease-out;
}

@keyframes weiboHighlightFade {
    from { background: #ffe8e0; }
    to { background: #fff8f5; }
}
