:root {
    --bg: #080b12;
    --bg-soft: #111827;
    --card: rgba(17, 24, 39, 0.82);
    --card-strong: #151d2f;
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(148, 163, 184, 0.18);
    --primary: #f43f5e;
    --primary-2: #fb7185;
    --accent: #38bdf8;
    --success: #22c55e;
    --danger: #ef4444;
    --shadow: 0 24px 70px rgba(0,0,0,.38);
    --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 0%, rgba(244, 63, 94, 0.24), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.18), transparent 30%),
        linear-gradient(180deg, #070a11 0%, #0b1020 45%, #080b12 100%);
}

a { color: inherit; text-decoration: none; }

img, video { max-width: 100%; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px clamp(18px, 4vw, 52px);
    background: rgba(8, 11, 18, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    box-shadow: 0 15px 30px rgba(244, 63, 94, .25);
    font-size: 16px;
}

.brand strong { display: block; font-size: 18px; letter-spacing: .2px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #dbeafe;
    font-weight: 650;
    font-size: 14px;
}

.nav a:hover { background: rgba(255,255,255,.08); }
.nav-pill { background: rgba(255,255,255,.1); border: 1px solid var(--line); }

.page {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 60px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 28px;
    min-height: 560px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }

.hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 8vw, 84px);
    letter-spacing: -0.07em;
}

.hero-text {
    max-width: 660px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
    margin: 24px 0 0;
}

.hero-actions, .actions-row, .admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    font-size: 14px;
}

.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.13); }
.btn.primary { background: linear-gradient(135deg, var(--primary), #7c3aed); border-color: transparent; box-shadow: 0 15px 32px rgba(244,63,94,.25); }
.btn.secondary { background: rgba(56, 189, 248, .14); border-color: rgba(56, 189, 248, .32); }
.btn.ghost { background: transparent; }
.btn.danger { background: rgba(239,68,68,.16); border-color: rgba(239,68,68,.36); color: #fecaca; }
.btn.small { min-height: 38px; padding: 9px 14px; }
.btn.tiny { min-height: 32px; padding: 7px 10px; font-size: 12px; }
.btn.full { width: 100%; }

.hero-card {
    position: relative;
    padding: 12px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: var(--shadow);
}

.hero-player {
    min-height: 370px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(244,63,94,.44), rgba(124,58,237,.18)),
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.25), transparent 25%),
        linear-gradient(160deg, #20263a, #0f172a 60%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.play-orb {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 20px 60px rgba(0,0,0,.32);
    font-size: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.hero-stats div, .stat-card {
    padding: 16px;
    border-radius: 20px;
    background: rgba(8, 11, 18, .68);
    border: 1px solid rgba(255,255,255,.1);
}

.hero-stats strong, .stat-card strong { display: block; font-size: 26px; letter-spacing: -.04em; }
.hero-stats span, .stat-card span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 26px 0 20px;
}

.section-head h1, .section-head h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.05em; }

.search {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
}

input, textarea, select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 15px;
    border: 1px solid rgba(148,163,184,.25);
    background: rgba(2, 6, 23, .55);
    color: #fff;
    outline: none;
    font: inherit;
}

input:focus, textarea:focus { border-color: rgba(56,189,248,.68); box-shadow: 0 0 0 4px rgba(56,189,248,.1); }
.search input { min-width: min(330px, 50vw); border: 0; background: transparent; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.video-card, .table-card, .form-card, .auth-card, .notice, .empty-state, .watch-side, .watch-info {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.video-card { overflow: hidden; }
.video-card:hover .thumb img, .video-card:hover .thumb-fallback { transform: scale(1.04); }

.thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #101827;
}

.thumb img, .thumb-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.thumb-fallback {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(244,63,94,.52), transparent 28%),
        linear-gradient(135deg, #1f2937, #111827);
}

.thumb-fallback span { font-size: 42px; opacity: .86; }

.badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 12px;
    font-weight: 800;
}

.video-card-body { padding: 16px; }
.video-card h3 { font-size: 19px; letter-spacing: -.02em; }
.video-card p { color: var(--muted); line-height: 1.55; min-height: 48px; }

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}
.meta-row.big { justify-content: flex-start; font-size: 14px; }

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 20px;
}

.player-wrap {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #000;
    box-shadow: var(--shadow);
}

.player-wrap video { display: block; width: 100%; max-height: 72vh; background: #000; }
.watch-info { margin-top: 16px; padding: 24px; }
.watch-info h1 { font-size: clamp(32px, 5vw, 58px); letter-spacing: -.06em; }
.watch-info p:not(.eyebrow) { color: #cbd5e1; line-height: 1.7; }
.watch-side { padding: 18px; align-self: start; position: sticky; top: 92px; }
.watch-side h2 { margin-bottom: 14px; }

.side-video {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    align-items: center;
}
.side-video:hover { background: rgba(255,255,255,.07); }
.side-thumb {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    display: grid;
    place-items: center;
}
.side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-video strong { display: block; font-size: 14px; line-height: 1.25; }
.side-video small { display: block; color: var(--muted); margin-top: 5px; }

.auth-card, .empty-state {
    max-width: 560px;
    margin: 70px auto;
    padding: 30px;
    text-align: center;
}
.auth-card h1, .empty-state h2 { font-size: 42px; letter-spacing: -.05em; }
.auth-card p, .empty-state p { color: var(--muted); line-height: 1.6; }

.form-card {
    padding: 24px;
    display: grid;
    gap: 18px;
}
.form-card.compact { text-align: left; margin-top: 18px; }
.form-card label { display: grid; gap: 8px; color: #e2e8f0; font-weight: 750; }
.form-card small, .hint { color: var(--muted); font-size: 13px; line-height: 1.5; }
.check-row { display: flex !important; align-items: center; gap: 10px !important; }
.check-row input { width: auto; }

.notice {
    padding: 16px 18px;
    margin: 16px 0;
}
.notice.success { border-color: rgba(34,197,94,.38); background: rgba(34,197,94,.12); }
.notice.error { border-color: rgba(239,68,68,.38); background: rgba(239,68,68,.12); }
.notice pre { white-space: pre-wrap; overflow: auto; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.stat-grid.wide { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.table-card { padding: 20px; margin-bottom: 18px; }
.table-card h2 { margin-bottom: 16px; }
.table-scroll { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #cbd5e1; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
td { color: #e5e7eb; }
td small { color: var(--muted); }

.status { display: inline-flex; padding: 6px 9px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.status.ok { background: rgba(34,197,94,.16); color: #bbf7d0; }
.status.muted { background: rgba(148,163,184,.12); color: #cbd5e1; }

.row-actions { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.inline-form { display: inline; margin: 0; }
.inline-form button { font-family: inherit; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

code {
    color: #bfdbfe;
    background: rgba(255,255,255,.08);
    border-radius: 7px;
    padding: 2px 6px;
}

.footer {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
    padding: 26px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero, .watch-layout, .two-col { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-top: 28px; }
    .watch-side { position: static; }
    .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-grid, .stat-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .topbar { align-items: flex-start; flex-direction: column; }
    .nav { justify-content: flex-start; }
    .page { width: min(100% - 24px, 1220px); padding-top: 18px; }
    .hero h1 { font-size: 44px; }
    .hero-player { min-height: 240px; }
    .hero-stats { grid-template-columns: 1fr; }
    .section-head { align-items: stretch; flex-direction: column; }
    .search { border-radius: 20px; flex-direction: column; }
    .search input { min-width: 0; }
    .video-grid { grid-template-columns: 1fr; }
    .stat-grid, .stat-grid.wide { grid-template-columns: 1fr; }
    .auth-card, .empty-state { margin: 26px auto; padding: 22px; }
}

/* WebRTC-Livebereich ----------------------------------------------------- */
.nav-live {
    color: #fff !important;
    border: 1px solid rgba(244, 63, 94, .35);
    background: rgba(244, 63, 94, .12);
}

.nav-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px rgba(244, 63, 94, .9);
}

.live-promo {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr);
    gap: 18px;
    align-items: center;
    margin: 8px 0 42px;
    padding: clamp(22px, 4vw, 40px);
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, .28);
    border-radius: 30px;
    background:
        radial-gradient(circle at 0 0, rgba(244, 63, 94, .25), transparent 36%),
        radial-gradient(circle at 100% 100%, rgba(56, 189, 248, .14), transparent 34%),
        rgba(15, 23, 42, .84);
    box-shadow: var(--shadow);
}

.live-promo h2 {
    margin: 7px 0 12px;
    font-size: clamp(30px, 5vw, 56px);
    letter-spacing: -.055em;
}

.live-promo p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.7;
}

.live-promo-stats {
    display: grid;
    gap: 8px;
}

.live-promo-stats div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(2,6,23,.42);
}

.live-promo-stats span { color: var(--muted); }
.live-promo-stats strong { text-align: right; }

.live-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin: 26px 0 24px;
}

.live-page-head h1 {
    font-size: clamp(44px, 8vw, 88px);
    letter-spacing: -.075em;
}

.live-page-head p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.65;
}

.live-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

.live-player-card,
.live-info-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(17, 24, 39, .86);
    box-shadow: var(--shadow);
}

.live-player-card { padding: 16px; }
.live-info-card { padding: 20px; }

.live-player-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px 4px 15px;
}

.live-kicker {
    color: var(--primary-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.live-player-toolbar h2 { margin-top: 5px; }

.live-connection-state {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 350px;
    padding: 9px 12px;
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(2, 6, 23, .52);
    font-size: 12px;
    font-weight: 750;
}

.live-connection-state i {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.live-connection-state.is-online { color: #bbf7d0; }
.live-connection-state.is-online i { background: #22c55e; box-shadow: 0 0 14px rgba(34,197,94,.8); }
.live-connection-state.is-error { color: #fecaca; }
.live-connection-state.is-error i { background: #ef4444; }

.live-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: #010204;
}

.live-remote-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.live-video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 30px;
    color: #a6b0c2;
    text-align: center;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 50% 30%, rgba(244,63,94,.13), transparent 35%);
    background-size: 34px 34px, 34px 34px, auto;
}

.live-video-placeholder[hidden] { display: none; }
.live-video-placeholder strong { font-size: clamp(18px, 3vw, 28px); }
.live-video-placeholder small { color: #748095; }
.live-placeholder-icon { color: var(--primary); font-size: 48px; }

.live-corner-badge,
.live-audio-badge {
    position: absolute;
    z-index: 3;
    top: 13px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(8,11,18,.82);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 900;
}

.live-corner-badge { left: 13px; }
.live-corner-badge.is-live { background: var(--primary); border-color: var(--primary); }
.live-audio-badge { right: 13px; }
.live-audio-badge.is-active { color: #bbf7d0; }

.live-player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.live-browser-note {
    margin: 12px 2px 0;
    color: var(--muted);
    font-size: 12px;
}

.live-info-card h2 { margin-bottom: 16px; }
.live-info-list { display: grid; gap: 8px; margin-bottom: 18px; }
.live-info-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 13px;
    background: rgba(255,255,255,.04);
}
.live-info-list span { color: var(--muted); font-size: 13px; }
.live-info-list strong { text-align: right; font-size: 13px; }

.live-health-heading { margin: 44px 0 4px; }
.live-health-heading h2 {
    font-size: clamp(30px, 5vw, 52px);
    letter-spacing: -.05em;
}
.live-health-heading p:not(.eyebrow) {
    max-width: 760px;
    color: #cbd5e1;
    line-height: 1.65;
}

@media (max-width: 920px) {
    .live-promo,
    .live-layout { grid-template-columns: 1fr; }

    .live-page-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
    .live-player-toolbar { align-items: flex-start; flex-direction: column; }
    .live-connection-state { max-width: 100%; }
    .live-audio-badge { top: auto; right: 10px; bottom: 10px; }
    .live-corner-badge { top: 10px; left: 10px; }
}

/* Automatische Live-/Offline-Anzeige auf der Startseite */
.index-live-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 11px 15px;
    color: #d5d9e4;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(8,11,18,.72);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.index-live-status:hover {
    transform: translateY(-2px);
}

.index-live-status__dot {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #768095;
    box-shadow: 0 0 0 5px rgba(118,128,149,.12);
}

.index-live-status__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.index-live-status__copy strong {
    font-size: .82rem;
    letter-spacing: .1em;
}

.index-live-status__copy small {
    overflow: hidden;
    color: #929caf;
    font-size: .72rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index-live-status.is-live {
    color: #fff;
    border-color: rgba(255,49,85,.58);
    background:
        linear-gradient(
            135deg,
            rgba(255,49,85,.23),
            rgba(134,18,52,.14)
        ),
        rgba(8,11,18,.84);
}

.index-live-status.is-live .index-live-status__dot {
    background: #ff3155;
    box-shadow:
        0 0 0 5px rgba(255,49,85,.14),
        0 0 22px rgba(255,49,85,.9);
    animation: indexLivePulse 1.25s infinite;
}

.index-live-status.is-live .index-live-status__copy strong {
    color: #ff7189;
}

.index-live-status.is-live .index-live-status__copy small {
    color: #f1c8cf;
}

@keyframes indexLivePulse {
    50% {
        opacity: .45;
        transform: scale(.78);
    }
}

@media (max-width: 560px) {
    .index-live-status {
        width: 100%;
    }
}


/* Live-/Offline-Anzeige – grüne bzw. rote Rundumrandung mit Punkt */
.index-live-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(8,11,18,.88);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.index-live-status:hover {
    transform: translateY(-2px);
}

.index-live-status__dot {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.index-live-status__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.index-live-status__copy strong {
    font-size: .88rem;
    letter-spacing: .08em;
}

.index-live-status__copy small {
    overflow: hidden;
    font-size: .74rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ONLINE */
.index-live-status.is-live {
    color: #ffffff;
    border-color: rgba(66, 214, 122, .95);
    background: linear-gradient(
        135deg,
        rgba(25, 90, 46, .96),
        rgba(14, 46, 24, .96)
    );
    box-shadow:
        0 0 0 2px rgba(66, 214, 122, .16),
        0 12px 35px rgba(0,0,0,.18);
}

.index-live-status.is-live .index-live-status__dot {
    background: #34e06f;
    box-shadow:
        0 0 0 5px rgba(52, 224, 111, .15),
        0 0 18px rgba(52, 224, 111, .95);
    animation: indexLivePulseGreen 1.2s infinite;
}

.index-live-status.is-live .index-live-status__copy strong {
    color: #bdf7cf;
}

.index-live-status.is-live .index-live-status__copy small {
    color: #d9f6e2;
}

/* OFFLINE */
.index-live-status.is-offline {
    color: #ffffff;
    border-color: rgba(255, 72, 72, .95);
    background: linear-gradient(
        135deg,
        rgba(104, 19, 19, .96),
        rgba(60, 11, 11, .96)
    );
    box-shadow:
        0 0 0 2px rgba(255, 72, 72, .16),
        0 12px 35px rgba(0,0,0,.18);
}

.index-live-status.is-offline .index-live-status__dot {
    background: #ff4545;
    box-shadow:
        0 0 0 5px rgba(255, 69, 69, .15),
        0 0 16px rgba(255, 69, 69, .9);
}

.index-live-status.is-offline .index-live-status__copy strong {
    color: #ffd0d0;
}

.index-live-status.is-offline .index-live-status__copy small {
    color: #ffdede;
}

@keyframes indexLivePulseGreen {
    50% {
        opacity: .48;
        transform: scale(.78);
    }
}

@media (max-width: 560px) {
    .index-live-status {
        width: 100%;
    }
}
