.reply-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    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;
}

.reply-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.reply-btn:hover .btn-icon {
    stroke: #60a5fa;
}

.reply-btn:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.06);
}

.reply-btn .btn-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: all 0.2s ease;
    pointer-events: none;
}

.reply-btn .btn-text {
    font-variant-numeric: tabular-nums;
    min-width: 16px;
    pointer-events: none;
    user-select: none;
}

.reply-btn.active {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.25);
    color: #60a5fa;
}

.reply-btn.active .btn-icon {
    stroke: #60a5fa;
}

.reply-btn .typing-dots {
    display: none;
}

.reply-btn .btn-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 5px;
    margin-left: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.reply-btn.active .btn-count {
    background: rgba(255, 255, 255, 0.2);
}