.molo-paywall {
	background: #14141c;
	color: #fff;
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	max-width: 480px;
	margin: 24px auto;
}
.molo-paywall__badge {
	display: inline-block;
	background: #e0b400;
	color: #14141c;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 12px;
}
.molo-paywall__message {
	font-size: 15px;
	opacity: 0.85;
	margin-bottom: 20px;
}
.molo-paywall__cta {
	display: inline-block;
	background: #e0b400;
	color: #14141c;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 4px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
}
.molo-paywall__plans {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.molo-plan-option {
	display: flex;
	justify-content: space-between;
	background: #22222e;
	color: #fff;
	border: 1px solid #333;
	border-radius: 4px;
	padding: 10px 16px;
	cursor: pointer;
	font-size: 14px;
}
.molo-plan-option:hover { border-color: #e0b400; }

.molo-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.molo-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}
.molo-modal__panel {
	position: relative;
	background: #fff;
	color: #14141c;
	border-radius: 8px;
	padding: 24px;
	max-width: 360px;
	width: 90%;
}
.molo-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}
.molo-modal__plans {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}
.molo-modal__status {
	margin-top: 12px;
	font-size: 13px;
}
.molo-player {
	position: relative;
	max-width: 100%;
}
.molo-player video { width: 100%; display: block; background: #000; }
.molo-player__loading { text-align: center; font-size: 13px; opacity: 0.7; }
