:root { color-scheme: dark; --bg: #050608; --text: #f5f7fb; --muted: rgba(245,247,251,.68); --line: rgba(255,255,255,.14); }
* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; height: 100%; overflow: hidden; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.widget { position: relative; width: 100vw; height: 100vh; overflow: hidden; border: 1px solid var(--line); background: #050608; }
#live-frame { display: block; width: 100%; height: 100%; border: 0; background: #050608; }
.brandbar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 10; height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 5px 9px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(5,6,8,.82); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 7px; min-width: 0; color: var(--text); text-decoration: none; font-size: 12px; font-weight: 800; }
.brand img { width: 22px; height: 22px; border-radius: 7px; flex: 0 0 auto; }
.brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
@media (max-width: 420px) { .label { display: none; } }
