.asdf-sv-container {
	width: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #1a3a2e;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	margin-bottom: 40px;
}

.asdf-sv-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.asdf-sv-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.asdf-sv-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.asdf-sv-wrapper:hover .asdf-sv-cover img {
	transform: scale(1.05);
}

.asdf-sv-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(26, 58, 46, 0.8) 0%, rgba(26, 58, 46, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 2;
}

.asdf-sv-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 40px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	width: 100%;
}

.asdf-sv-play-btn {
	width: 80px;
	height: 80px;
	background: var(--primary-purple, #5e1062);
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	margin-bottom: auto;
	margin-top: auto;
	transition: all 0.3s ease;
	position: relative;
}

.asdf-sv-play-btn svg {
	width: 32px;
	height: 32px;
	margin-left: 6px; /* center optical balance */
}

.asdf-sv-play-btn::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: rgba(94, 16, 98, 0.3);
	border-radius: 50%;
	z-index: -1;
	animation: pulsePlay 2s infinite ease-out;
}

.asdf-sv-wrapper:hover .asdf-sv-play-btn {
	transform: scale(1.1);
	background: #fff;
	color: var(--primary-purple, #5e1062);
}

.asdf-sv-wrapper:hover .asdf-sv-play-btn::before {
	background: rgba(255, 255, 255, 0.3);
}

@keyframes pulsePlay {
	0% { transform: scale(0.8); opacity: 1; }
	100% { transform: scale(1.5); opacity: 0; }
}

.asdf-sv-title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 12px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.asdf-sv-subtitle {
	font-size: 18px;
	margin: 0;
	max-width: 600px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Lightbox Modal */
.asdf-sv-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.asdf-sv-lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.asdf-sv-lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.asdf-sv-lightbox-content {
	position: relative;
	width: 90%;
	max-width: 1000px;
	z-index: 1;
	background: #000;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	border-radius: 12px;
	overflow: hidden;
}

.asdf-sv-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 8px;
	transition: opacity 0.2s;
}

.asdf-sv-lightbox-close:hover {
	opacity: 0.7;
}

.asdf-sv-iframe-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	background: #000;
}

.asdf-sv-iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.asdf-sv-title { font-size: 24px; }
	.asdf-sv-subtitle { font-size: 15px; }
	.asdf-sv-play-btn { width: 64px; height: 64px; }
	.asdf-sv-play-btn svg { width: 24px; height: 24px; margin-left: 4px; }
}
