.ytlcd-wrapper {
	box-sizing: border-box;
	width: 100%;
	margin: 1rem 0;
	padding: clamp(12px, 2.5vw, 22px);
	overflow: hidden;
	background: #fff;
	border: 1px solid #e3e7eb;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(20, 33, 50, 0.09);
}

.ytlcd-wrapper *,
.ytlcd-wrapper *::before,
.ytlcd-wrapper *::after {
	box-sizing: border-box;
}

.ytlcd-status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0 0 12px;
	padding: 5px 11px;
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.055em;
}

.ytlcd-status-live {
	background: #12863d;
}

.ytlcd-status-offline {
	background: #bf2f2f;
}

.ytlcd-player {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	background: #101317;
	border-radius: 10px;
}

@supports (aspect-ratio: 16 / 9) {
	.ytlcd-player {
		height: auto;
		padding-bottom: 0;
		aspect-ratio: 16 / 9;
	}
}

.ytlcd-player iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.ytlcd-live-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	padding: 5px 9px;
	color: #fff;
	background: #df1f2d;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
}

.ytlcd-external-player {
	width: 100%;
	overflow: hidden;
	background: #101317;
	border-radius: 10px;
}

.ytlcd-external-player video {
	display: block;
	width: 100%;
	max-height: 80vh;
	margin: 0;
}

.ytlcd-offline-panel {
	display: flex;
	min-height: 300px;
	padding: clamp(26px, 6vw, 60px) clamp(18px, 5vw, 48px);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background: linear-gradient(145deg, #f8fafb, #eef2f5);
	border: 1px solid #e2e6ea;
	border-radius: 10px;
}

.ytlcd-offline-image {
	display: block;
	max-width: 100%;
	max-height: 430px;
	margin: 0 auto 24px;
	object-fit: contain;
	border-radius: 8px;
}

.ytlcd-offline-panel h3 {
	margin: 0;
	color: #202832;
	font-size: clamp(20px, 3vw, 29px);
	font-weight: 700;
	line-height: 1.25;
}

.ytlcd-offline-panel p {
	margin: 10px 0 0;
	color: #637080;
	font-size: clamp(14px, 2vw, 17px);
	line-height: 1.5;
}

.ytlcd-tv-icon {
	position: relative;
	width: 82px;
	height: 58px;
	margin: 0 0 25px;
	border: 4px solid #8a96a3;
	border-radius: 10px;
}

.ytlcd-tv-icon::before,
.ytlcd-tv-icon::after {
	position: absolute;
	top: -13px;
	width: 3px;
	height: 14px;
	content: '';
	background: #8a96a3;
	border-radius: 2px;
}

.ytlcd-tv-icon::before {
	left: 31px;
	transform: rotate(-40deg);
}

.ytlcd-tv-icon::after {
	right: 31px;
	transform: rotate(40deg);
}

.ytlcd-tv-icon span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #8a96a3;
	transform: translate(-38%, -50%);
}

@media (max-width: 600px) {
	.ytlcd-wrapper {
		border-radius: 10px;
	}

	.ytlcd-offline-panel {
		min-height: 240px;
	}

	.ytlcd-live-badge {
		top: 8px;
		right: 8px;
	}
}
