body {
	background: #000;
}
#panel-back {
	display: none;
}
#livestream-panel {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	padding: 6px;
	box-sizing: border-box;
	background: #333;
	color: #f5f5f5;
}
.livestream-logo-icon svg {
	width: 42px;
	height: 42px;
	vertical-align: top;
	flex-shrink: 0;
}
#livestream-title {
	font-size: 36px;
	font-size: clamp(16px, 4vw, 36px);
	white-space: nowrap;
}
#livestream-filters {
	margin: 0 10px;
	padding: 5px 10px;
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}
#livestream-filters .check-wrap {
	padding: 7px 0 7px 32px;
	color: #f5f5f5;
	white-space: nowrap;
}
#livestream-filters .check-wrap > svg {
	width: 24px;
	height: 24px;
	border-color: #000;
	background: #fff;
}
#livestream-filters .check-wrap.checked > svg path {
	stroke: #000;
}
#livestream-timer {
	width: 140px;
	height: 40px;
	font-size: 22px;
	background: #fff;
	color: #000;
	flex-shrink: 0;
	position: relative;
}
#livestream-timer span {
	position: relative;
	z-index: 1;
}
#livestream-timer-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
}
#livestream {
	display: flex;
	gap: 5px;
	min-height: 650px;
}
.livestream-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.img-wrap {
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
}
.show-content .img-wrap {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s ease;
}
.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.15);
}
#livestream-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	overflow-y: auto;
}
#livestream-overlay-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	padding: 20px 0 40px;
	box-sizing: border-box;
}
#livestream-overlay-img {
	max-width: 70vw;
	display: block;
	border-radius: 6px 6px 0 0;
}
#livestream-overlay-btns {
	width: 420px;
	max-width: 100%;
	margin-top: 10px;
	display: flex;
	gap: 5px;
}
.livestream-btn.but {
	display: inline-flex;
	width: 50%;
	height: 80px;
	gap: 20px;
	font-size: 22px;
	border: none;
	border-radius: 0;
}
.livestream-upvote-icon {
	display: inline-flex;
	position: relative;
	width: 16px;
	height: 28px;
	transform: scale(1.8);
}
@media (max-width: 600px) {
	#livestream-filters {
		margin: 0;
		padding: 0;
		gap: 5px;
	}
	#livestream-overlay-inner {
		padding: 5px;
	}
	#livestream-overlay-img {
		max-width: 100%;
	}
	#livestream-overlay-btns {
		width: 100%;
	}
}
#age-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}
#age-popup {
	background: #fff;
	padding: 40px;
	text-align: center;
	max-width: 450px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
#age-popup-title {
	margin: 0 0 15px;
	font-size: 28px;
	color: #000;
}
#age-popup p {
	margin: 0 0 25px;
	font-size: 14px;
	color: #000;
	line-height: 1.5;
}
#age-popup .age-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}
#age-popup .age-buttons .but {
	width: 140px;
	height: 40px;
	font-size: 22px;
	font-weight: bold;
	border-radius: 0;
}
#age-popup .age-btn-yes {
	background: red;
	color: #000;
}
#age-popup .age-btn-no {
	background: #aaa;
	color: #000;
}
