.pvp-wrapper {
	display: flex;
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pvp-main {
	flex: 1 1 70%;
	min-width: 0;
}

.pvp-video-shell {
	position: relative;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.pvp-video-shell video {
	width: 100%;
	height: 100%;
	display: block;
	background: #000;
}

.pvp-loading-veil {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.pvp-controls-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	gap: 12px;
}

.pvp-nav-btn {
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	cursor: pointer;
}

.pvp-nav-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.pvp-nav-btn:hover:not(:disabled) {
	background: #333;
}

.pvp-now-playing {
	flex: 1;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pvp-sidebar {
	flex: 0 0 300px;
	max-height: 560px;
	overflow-y: auto;
	border-left: 1px solid #eaeaea;
	padding-left: 16px;
}

.pvp-sidebar-title {
	margin: 0 0 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #888;
}

.pvp-thumb-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pvp-thumb-item {
	display: flex;
	gap: 10px;
	cursor: pointer;
	padding: 6px;
	border-radius: 6px;
	transition: background 0.15s ease;
}

.pvp-thumb-item:hover {
	background: #f4f4f4;
}

.pvp-thumb-item.pvp-active {
	background: #eef3ff;
}

.pvp-thumb-img {
	position: relative;
	flex: 0 0 110px;
	height: 62px;
	background-size: cover;
	background-position: center;
	background-color: #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.pvp-thumb-duration {
	position: absolute;
	right: 4px;
	bottom: 4px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 11px;
	padding: 1px 5px;
	border-radius: 3px;
}

.pvp-thumb-label {
	font-size: 13px;
	line-height: 1.35;
	color: #222;
	align-self: center;
}

@media (max-width: 780px) {
	.pvp-wrapper {
		flex-direction: column;
	}
	.pvp-sidebar {
		flex: none;
		border-left: none;
		border-top: 1px solid #eaeaea;
		padding-left: 0;
		padding-top: 16px;
		max-height: 320px;
	}
}
