.mini-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 74px;
    height: 74px;
    background: linear-gradient(145deg, #ff4757, #ff2040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 28px var(--color-accent-glow), 0 0 0 8px rgba(255, 71, 87, 0.18);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatBtnPulse 2.2s infinite;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

@keyframes floatBtnPulse {
    0% {
        box-shadow: 0 10px 28px var(--color-accent-glow), 0 0 0 8px rgba(255, 71, 87, 0.18);
    }
    50% {
        box-shadow: 0 12px 34px rgba(255, 32, 64, 0.7), 0 0 0 16px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 10px 28px var(--color-accent-glow), 0 0 0 8px rgba(255, 71, 87, 0.18);
    }
}

.mini-btn:active {
    transform: scale(0.9);
}

.mini-btn::after {
    content: "点我审核";
    position: absolute;
    top: -32px;
    right: 0;
    background: #ff4757;
    color: var(--text-on-primary);
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    font-size: var(--fs-caption);
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: bounceText 2s infinite;
}

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

.mini-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-on-primary);
    font-weight: bold;
    font-size: var(--fs-small);
    line-height: 1.2;
}

.mini-btn-content svg {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
}

/* Hide when panel is open */
.mini-btn.hidden {
    display: none;
}
