.vk-carousel {
	max-width: 1000px;
	margin: 0 auto;
	background: #1a1a1a;
	border-radius: 15px;
	overflow: hidden;
}

.carousel-main {
	position: relative;
	aspect-ratio: 16 / 9;
}

.carousel-main iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	transition: all 0.3s;
	z-index: 10;
}

.nav-arrow:hover {
	background: rgba(102, 126, 234, 0.9);
	transform: translateY(-50%) scale(1.1);
}

.nav-left {
	left: 20px;
}

.nav-right {
	right: 20px;
}

.playlist-thumbnails {
	display: flex;
	gap: 10px;
	padding: 15px;
	overflow-x: auto;
	background: #1a1a1a;
}

.playlist-item {
	flex: 0 0 auto;
	width: 180px;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
}

.playlist-item.active {
	border-color: #667eea;
	transform: scale(1.02);
}

.playlist-item img {
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.playlist-title {
	padding: 8px;
	background: #2a2a2a;
	color: white;
	font-size: 0.8rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: 'BebasNeue',Arial,sans-serif;
}

@media (max-width: 768px) {
	body {
		padding: 20px;
	}
	
	.playlist-item {
		width: 140px;
	}
	
	.playlist-item img {
		height: 80px;
	}
}