/* ═══════════════════════════════════════════════════════════════════════════
   📊 ULTRA-MINIMALIST LIVE TELEMETRY MICRO-PILL (ICONS ONLY)
   ═══════════════════════════════════════════════════════════════════════════ */

.cyber-telemetry-hud {
    position: fixed;
    bottom: 14px;
    left: 16px;
    z-index: 990;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 24px;
    padding: 0 9px;
    background: rgba(10, 12, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 11px;
    color: rgba(226, 232, 240, 0.85);
    letter-spacing: 0.2px;
    user-select: none;
    cursor: default;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.cyber-telemetry-hud:hover {
    background: rgba(13, 16, 26, 0.9);
    border-color: rgba(0, 240, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 240, 255, 0.1);
}

.telemetry-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.telemetry-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    display: inline-block;
    animation: telemetryPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes telemetryPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.telemetry-icon {
    display: inline-block;
    vertical-align: middle;
    color: #38bdf8;
    opacity: 0.85;
}

.telemetry-val {
    font-weight: 600;
    color: #f1f5f9;
}

.telemetry-val.green {
    color: #34d399;
}

.telemetry-sep {
    color: rgba(255, 255, 255, 0.18);
    font-size: 10px;
    line-height: 1;
}

@media (max-width: 640px) {
    .cyber-telemetry-hud {
        bottom: 12px;
        left: 12px;
        height: 22px;
        font-size: 10px;
        padding: 0 8px;
        gap: 6px;
    }
}
