:root {
	--bg: #0b0f17;
	--panel: #121826;
	--panel-2: #171f31;
	--text: #e8edf7;
	--muted: #8b98b0;
	--accent: #5b8cff;
	--accent-2: #34d399;
	--border: rgba(255,255,255,.08);
	--shadow: 0 24px 80px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
	background:
		radial-gradient(circle at top left, rgba(91,140,255,.18), transparent 28%),
		radial-gradient(circle at top right, rgba(52,211,153,.12), transparent 24%),
		var(--bg);
	color: var(--text);
	min-height: 100vh;
}
.layout { max-width: 1080px; margin: 0 auto; padding: 24px; }
.topbar {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 18px 22px; background: rgba(18,24,38,.82); border: 1px solid var(--border);
	border-radius: 18px; backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
	width: 14px; height: 14px; border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 0 18px rgba(91,140,255,.55);
}
.brand-name { font-weight: 700; letter-spacing: .02em; }
.brand-tag, .pill {
	font-size: 12px; padding: 6px 10px; border-radius: 999px;
	background: rgba(255,255,255,.06); color: var(--muted);
}
.pill-live { color: #ffd5d5; background: rgba(239,68,68,.14); }
.topbar-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.content { margin-top: 28px; }
.hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); }
.lead { margin: 0; max-width: 720px; color: var(--muted); line-height: 1.6; }
.grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px; margin: 28px 0;
}
.card {
	padding: 20px; border-radius: 18px; background: var(--panel);
	border: 1px solid var(--border); box-shadow: var(--shadow);
}
.card-label { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.card-value { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.status-ok { color: var(--accent-2); }
.card-note { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.panel {
	padding: 22px; border-radius: 18px; background: var(--panel);
	border: 1px solid var(--border); box-shadow: var(--shadow);
}
.panel-head {
	display: flex; justify-content: space-between; align-items: baseline;
	margin-bottom: 16px;
}
.panel-head h2 { margin: 0; font-size: 18px; }
.muted { color: var(--muted); font-size: 13px; }
.stream-list {
	list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
}
.stream-list li {
	display: grid; grid-template-columns: 16px 1.4fr .8fr .8fr; gap: 12px; align-items: center;
	padding: 14px 16px; border-radius: 14px; background: var(--panel-2); border: 1px solid var(--border);
	font-size: 14px;
}
.dot {
	width: 10px; height: 10px; border-radius: 50%; background: #475569; justify-self: center;
}
.dot.live { background: #ef4444; box-shadow: 0 0 10px rgba(239,68,68,.55); }
.name { font-weight: 600; }
.proto, .bitrate { color: var(--muted); text-align: right; }
.footer {
	display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
	margin-top: 24px; color: var(--muted); font-size: 13px;
}
.footer a { color: var(--accent); text-decoration: none; }
@media (max-width: 720px) {
	.topbar { flex-direction: column; align-items: flex-start; }
	.stream-list li { grid-template-columns: 16px 1fr; }
	.proto, .bitrate { text-align: left; }
}
