/* ── Livestream Tracker – Frontend ────────────────────────────────── */

.lst-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

.lst-hidden { display: none !important; }

.lst-event-title {
    text-align: center;
    margin: 0 0 14px;
}

/* ── Status bar ── */
.lst-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    color: #f1f5f9;
    border-radius: 8px;
    padding: 9px 16px;
    margin-bottom: 12px;
    font-size: 13px;
    gap: 12px;
}

.lst-tracking-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.lst-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: lst-pulse 1.8s ease-in-out infinite;
}

@keyframes lst-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}

.lst-timer {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #34d399;
    white-space: nowrap;
}

/* ── Player ── */
.lst-player-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.lst-vimeo-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.lst-vimeo-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ── Error ── */
.lst-error {
    color: #b91c1c;
    background: #fff0f0;
    border: 1px solid #fca5a5;
    padding: 12px 16px;
    border-radius: 6px;
}
