.pvb-2408-container {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer; /* Container handles click to trigger hover anywhere */
}

.pvb-2408-button-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1;
}

.pvb-2408-inner-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	border-radius: 50%;
	z-index: 2;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Group hover trigger */
.pvb-2408-container:hover .pvb-2408-inner-circle {
	transform: translate(-50%, -50%) scale(1.1);
}

.pvb-2408-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid;
	z-index: 1;
	animation: pvb-2408-pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: border-color 0.3s ease;
}

.pvb-2408-ring-2 {
	animation-delay: 1s;
}

.pvb-2408-play-icon {
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 20px solid;
	margin-left: 6px; /* Offset to center optically */
	transition: border-left-color 0.3s ease;
}

.pvb-2408-text {
	font-weight: 600;
	line-height: 1.2;
	transition: color 0.3s ease;
}

@keyframes pvb-2408-pulse {
	0% {
		width: 80%;
		height: 80%;
		opacity: 1;
	}
	100% {
		width: 150%;
		height: 150%;
		opacity: 0;
	}
}

/* Lightbox Styles */
.pvb-2408-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pvb-2408-lightbox-overlay.active {
	opacity: 1;
	visibility: visible;
}

.pvb-2408-lightbox-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pvb-2408-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	line-height: 1;
	z-index: 10;
}

.pvb-2408-lightbox-iframe {
	width: 100%;
	height: 100%;
	border: none;
}
