/* ============================================================
   Tarpit-Statistiken & Live-Verbindungs-Tabelle
   ============================================================ */

.tarpit-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.tarpit-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1.4rem;
    background: var(--bg-panel);
    border: 1px solid var(--accent-endlessh);
    border-radius: 6px;
    min-width: 11rem;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.1);
}

.tarpit-stat__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-endlessh);
}

.tarpit-stat__value {
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text-strong);
    line-height: 1.1;
}

/* Duration-Kachel hat längeren Text → kleinere Schrift */
.tarpit-stat__value--duration {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.live-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.live-section[hidden] { display: none; }

.live-section .section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.live-indicator {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent-endlessh);
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.55);
    animation: live-pulse 1.6s ease-out infinite;
}

@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.55); }
    70%  { box-shadow: 0 0 0 0.5rem rgba(255, 153, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

.live-table .live-duration {
    font-variant-numeric: tabular-nums;
    color: var(--accent-endlessh);
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .live-indicator { animation: none; }
}
