/* Popup global de aviso de estadísticas */
.stats-rework-notice {
    position: fixed;
    inset: auto 18px 18px auto;
    z-index: 9999;
    width: min(420px, calc(100vw - 36px));
    padding: 16px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 0 0, rgba(49,94,251,.24), transparent 36%),
        linear-gradient(145deg, rgba(10,13,27,.96), rgba(20,11,24,.96));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 80px rgba(0,0,0,.42);
    color: #fff;
    backdrop-filter: blur(14px);
}
.stats-rework-notice[hidden] { display: none !important; }
.stats-rework-notice strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}
.stats-rework-notice p {
    margin: 0;
    color: rgba(245,248,255,.74);
    line-height: 1.55;
    font-size: .92rem;
}
.stats-rework-notice-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}
.stats-rework-notice button {
    border: 0;
    border-radius: 999px;
    padding: 9px 13px;
    color: #fff;
    font-weight: 950;
    cursor: pointer;
    background: linear-gradient(135deg, #e5303d, #315efb);
}
@media (max-width: 560px) {
    .stats-rework-notice {
        inset: auto 12px 12px 12px;
        width: auto;
    }
}
