/* 348: Live stats flash + status-badge */
.lx-stat-flash {
    animation: lx-stat-flash 600ms ease;
}
@keyframes lx-stat-flash {
    0%   { background: rgba(132, 204, 22, .25); }
    100% { background: transparent; }
}
@media (prefers-reduced-motion: reduce) {
    .lx-stat-flash { animation: none; }
}
.lx-live-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; padding: 3px 10px; border-radius: 999px;
    background: rgba(132, 204, 22, .12); color: #84cc16;
    font-family: "JetBrains Mono", monospace; letter-spacing: .04em;
}
.lx-live-status[data-state="reconnecting"] { background: rgba(201, 162, 39, .15); color: #c9a227; }
.lx-live-status[data-state="disconnected"] { background: rgba(244, 63, 94, .15); color: #f43f5e; }
