.tnd-vs-slider {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
}

.tnd-vs-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.tnd-vs-slide {
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	background: #000;
}

.tnd-vs-thumb-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	cursor: pointer;
	overflow: hidden;
}

.tnd-vs-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tnd-vs-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: none;
	cursor: pointer;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
	transition: transform 0.2s ease;
}

.tnd-vs-thumb-wrap:hover .tnd-vs-play-btn {
	transform: translate(-50%, -50%) scale(1.1);
}

.tnd-vs-slide iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	border: 0;
}

.tnd-vs-title {
	color: #fff;
	background: rgba(0,0,0,0.6);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 10px 14px;
	font-size: 15px;
}

.tnd-vs-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.45);
	color: #fff;
	border: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 5;
	font-size: 16px;
	line-height: 1;
}

.tnd-vs-nav:hover {
	background: rgba(0,0,0,0.75);
}

.tnd-vs-prev {
	left: 12px;
}

.tnd-vs-next {
	right: 12px;
}

.tnd-vs-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 5;
}

.tnd-vs-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	border: none;
	padding: 0;
}

.tnd-vs-dot.tnd-vs-dot-active {
	background: #fff;
}

@media (max-width: 600px) {
	.tnd-vs-nav {
		width: 30px;
		height: 30px;
		font-size: 13px;
	}
	.tnd-vs-title {
		font-size: 13px;
		padding: 8px 10px;
	}
}
