:root {
	--w: 1920px;
	--h: 1080px;
	--pad: 10px;
	--gap: 8px;
	--radius: 18px;
	--bg1: #070a12;
	--bg2: #0b1223;
	--card: rgba(255, 255, 255, 0.06);
	--border: rgba(255, 255, 255, 0.10);
	--muted: rgba(255, 255, 255, 0.72);
	--muted2: rgba(255, 255, 255, 0.56);
	--on: #8dffb0;
	--off: #ff9b9b;
	--shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
	--mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: var(--bg1);
	color: #fff;
	font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	overflow: hidden;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lv-wrap {
	width: var(--w);
	height: var(--h);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background:
		radial-gradient(circle at 0% 0%, rgba(40, 90, 255, .18), transparent 42%),
		radial-gradient(circle at 100% 0%, rgba(255, 80, 140, .14), transparent 40%),
		radial-gradient(circle at 40% 120%, rgba(80, 255, 170, .10), transparent 45%),
		linear-gradient(180deg, var(--bg2), var(--bg1));
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.lv-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--pad);
	border-bottom: 1px solid var(--border);
	background: rgba(0, 0, 0, .18);
}

.lv-brand {
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
}

.lv-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
}

.lv-sep {
	color: var(--muted2);
}

.lv-status {
	font-weight: 800;
	letter-spacing: .2px;
}

.lv-on {
	color: var(--on);
}

.lv-off {
	color: var(--off);
}

.lv-main {
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: 1.45fr .55fr;
	gap: var(--gap);
	padding: var(--pad);
	align-items: stretch;
}

.lv-board {
	min-height: 0;
	height: 100%;
	display: grid;
	grid-template-rows: 28fr 71.3fr;
	gap: var(--gap);
}

.lv-board-bottom {
	min-height: 0;
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: var(--gap);
}

.lv-board-bottom > .lv-card {
	height: 100%;
}

.lv-card {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 10px;
	min-height: 0;
}

.lv-card-h {
	letter-spacing: 1px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 10px 3px;
}

.lv-h-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.lv-h-time {
	text-transform: none;
	letter-spacing: 0;
	color: var(--muted);
	white-space: nowrap;
	font-weight: normal;
}

.lv-maincard {
	min-height: 0;
	height: 100%;
	background: transparent;
	border: 0;
	display: flex;
	flex-direction: column;
}

.lv-main-box {
	flex: 1;
	min-height: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(0, 0, 0, .14);
	padding: var(--gap);
	display: flex;
	flex-direction: column;
}

.lv-main-top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.lv-main-date {
	font-size: 20px;
	color: var(--muted2);
	letter-spacing: .2px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lv-main-row {
	flex: 1;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	overflow: hidden;
}

.lv-main-name {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 120px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .4px;
	line-height: 1;
	transform: translateY(-6px);
	color: #fff;
	white-space: nowrap;
}

.lv-main-balls {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.lv-main-balls .lv-balls {
	gap: 14px;
}

.lv-main-balls .lv-ball,
.lv-main-balls .lv-ball-skel {
	width: 110px;
	height: 110px;
}

.lv-main-balls .lv-ball-num {
	width: 65px;
	height: 65px;
	font-size: 40px;
}

.lv-main-next {
	font-size: 20px;
	color: var(--muted2);
	letter-spacing: .2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lv-main-next .lv-next-name {
	color: #FFF;
}

.lv-others,
.lv-list {
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.lv-others {
	flex: 1;
}

.lv-others-box {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 8.8px;
}

.lv-other-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9.5px 10px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .14);
}

.lv-other-left {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.lv-other-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lv-other-sub {
	font-size: 13px;
	color: var(--muted2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lv-other-right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.lv-table {
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .14);
	flex: 1;
	min-height: 0;
}

.lv-tr {
	display: grid;
	grid-template-columns: 1.15fr 1.25fr .60fr;
	align-items: center;
	gap: 10px;
	padding: var(--pad);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lv-tr:last-child {
	border-bottom: 0;
}

.lv-th {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .5px;
	color: #C0C0C0;
	text-transform: uppercase;
	background: rgba(0, 0, 0, .20);
}

.lv-tr > div {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lv-tr > div:nth-child(2) {
	overflow: visible;
	text-overflow: clip;
}

.lv-tr > div:nth-child(3) {
	text-align: right;
}

.lv-angka {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: visible;
}

.lv-chat {
	min-height: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.lv-chat-box {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .14);
}

.lv-chat-scroll {
	height: 100%;
	padding: var(--gap);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

#lv-chat-list {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 13px;
	padding: var(--pad);
}

.lv-chat-empty {
	display: none;
}

.lv-chat-item {
	display: flex;
	gap: var(--gap);
	align-items: center;
}

.lv-chat-avatar {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .4px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .12);
	flex: 0 0 28px;
}

.lv-chat-body {
	min-width: 0;
	flex: 1;
	display: block;
	line-height: 1.25;
}

.lv-chat-name {
	display: inline;
	font-size: 13px;
	font-weight: 900;
	color: rgba(255, 255, 255, .95);
	letter-spacing: .2px;
	white-space: nowrap;
}

.lv-chat-name::after {
	content: "";
}

.lv-chat-msg {
	display: inline;
	font-size: 13px;
	color: var(--muted);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.lv-ticker {
	height: 40px;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-top: 1px solid var(--border);
	background: rgba(0, 0, 0, .20);
}

.lv-ticker-track {
	white-space: nowrap;
	will-change: transform;
	padding-left: 100%;
	font-size: 16px;
	color: rgba(255, 255, 255, .90);
	letter-spacing: .2px;
	animation: lv-scroll 90s linear infinite;
}

.lv-tk-name {
	color: #fff;
}

.lv-tk-res {
	color: var(--muted);
	letter-spacing: .2px;
}

.lv-tk-time {
	color: var(--muted2);
}

.lv-tk-sep {
	color: rgba(255, 255, 255, .60);
}

.lv-tk-delim {
	color: rgba(255, 255, 255, .25);
	margin: 0 14px;
}

@keyframes lv-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.lv-flash {
	animation: lv-flash 900ms ease;
}

@keyframes lv-flash {
	0% {
		box-shadow: 0 0 0 rgba(255, 255, 255, 0);
	}
	35% {
		box-shadow: 0 0 34px rgba(255, 255, 255, .18);
	}
	100% {
		box-shadow: 0 0 0 rgba(255, 255, 255, 0);
	}
}

.lv-row-flash {
	animation: lv-rowflash 900ms ease;
}

@keyframes lv-rowflash {
	0% {
		background: rgba(255, 255, 255, 0);
	}
	35% {
		background: rgba(255, 255, 255, .12);
	}
	100% {
		background: rgba(255, 255, 255, 0);
	}
}

.lv-balls {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
}

.lv-ball,
.lv-ball-skel {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	aspect-ratio: 1 / 1;
}

.lv-ball {
	--ball-base: #888;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 35%),
		radial-gradient(circle at 70% 85%, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%),
		var(--ball-base);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.lv-ball::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .12);
}

.lv-ball-num {
	position: relative;
	z-index: 2;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(0, 0, 0, .18);
	color: rgba(0, 0, 0, .88);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
}

.lv-ball-skel {
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.lv-ball-skel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
	transform: translateX(-100%);
	animation: lv-shimmer 1.15s linear infinite;
}

@keyframes lv-shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.lv-ball-0 {
	--ball-base: #d9d9d9;
}

.lv-ball-1 {
	--ball-base: #f5cf00;
}

.lv-ball-2 {
	--ball-base: #1e6bff;
}

.lv-ball-3 {
	--ball-base: #e34040;
}

.lv-ball-4 {
	--ball-base: #7a4cff;
}

.lv-ball-5 {
	--ball-base: #ff8a00;
}

.lv-ball-6 {
	--ball-base: #2ebf5b;
}

.lv-ball-7 {
	--ball-base: #8b2432;
}

.lv-ball-8 {
	--ball-base: #0f0f0f;
}

.lv-ball-9 {
	--ball-base: #00c2ff;
}