.vtl-wrap {
	position: relative;
	max-width: 800px;
	margin: 24px auto;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}

.vtl-video-inner {
	position: relative;
	width: 100%;
}

.vtl-oembed,
.vtl-generic-embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 */
	height: 0;
}

.vtl-oembed iframe,
.vtl-generic-embed iframe,
.vtl-video-inner video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.vtl-wrap.vtl-locked .vtl-video-inner {
	pointer-events: none;
}

.vtl-overlay {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	z-index: 5;
	text-align: center;
	padding: 20px;
}

.vtl-wrap.vtl-locked .vtl-overlay {
	display: flex;
}

.vtl-overlay-content {
	max-width: 420px;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vtl-lock-icon {
	font-size: 34px;
	display: block;
	margin-bottom: 12px;
}

.vtl-lock-message {
	font-size: 17px;
	line-height: 1.5;
	margin: 0 0 18px 0;
}

.vtl-lock-button {
	display: inline-block;
	background-color: #e53e3e;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.3px;
	transition: background-color 0.2s ease;
}

.vtl-lock-button:hover {
	background-color: #c53030;
}
