@keyframes blink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

@keyframes hb-sweep {
    from { stroke-dashoffset: 600; }
    to { stroke-dashoffset: 0; }
}

.hb-line {
    animation: hb-sweep 2.2s linear infinite;
    filter: drop-shadow(0 0 6px var(--brand)) drop-shadow(0 0 12px var(--brand-cyan));
}

.status-offline-panel {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.45);
}

.status-offline-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #dc2626;
}
