/* ========================================
   GLOBAL VIDEO PLAYER STYLES
   Base styles only - SVG stays in HTML
   ======================================== */

/* Video Embed Container */
.video-embed {
	background: #f5f5f5;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	height: 100%;
	cursor: pointer;
}

.video-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Video overlay gradient */
.video-thumbnail::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
	pointer-events: none;
}

/* Play button */
.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 73px;
	height: 73px;
	border: none;
	padding: 0;
	background: transparent;
	background-color: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.video-play-button:hover {
	transform: translate(-50%, -50%) scale(1.05);
	background: transparent;
	background-color: transparent;
}

.video-play-button:focus {
	background: transparent;
	background-color: transparent;
	outline: none;
}

.video-play-button:active {
	background: transparent;
	background-color: transparent;
}

/* SVG circle with blur effect */
.video-play-button svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* Play triangle icon */
.video-play-button .play-triangle {
	position: relative;
	z-index: 1;
	display: block;
	width: 0;
	height: 0;
	border-left: 18px solid #ffffff;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 4px;
}

/* Video iframe container */
.video-iframe-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-iframe-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
	.video-embed {
		height: 280px;
	}

	.video-play-button {
		width: 65px;
		height: 65px;
	}

	.video-play-button .play-triangle {
		border-left-width: 16px;
		border-top-width: 10px;
		border-bottom-width: 10px;
	}
}

@media (max-width: 640px) {
	.video-embed {
		height: 250px;
		border-radius: 12px;
	}

	.video-play-button {
		width: 60px;
		height: 60px;
	}

	.video-play-button .play-triangle {
		border-left-width: 14px;
		border-top-width: 9px;
		border-bottom-width: 9px;
	}
}

@media (max-width: 480px) {
	.video-embed {
		height: 220px;
	}

	.video-play-button {
		width: 55px;
		height: 55px;
	}

	.video-play-button .play-triangle {
		border-left-width: 12px;
		border-top-width: 8px;
		border-bottom-width: 8px;
		margin-left: 3px;
	}
}

@media (max-width: 375px) {
	.video-embed {
		height: 200px;
	}

	.video-play-button {
		width: 50px;
		height: 50px;
	}
}