html.rcm-content-protection,
html.rcm-content-protection body {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

html.rcm-content-protection input,
html.rcm-content-protection textarea,
html.rcm-content-protection select,
html.rcm-content-protection option,
html.rcm-content-protection button,
html.rcm-content-protection [contenteditable=""],
html.rcm-content-protection [contenteditable="true"],
html.rcm-content-protection .rcm-protect-allow-select {
	-webkit-touch-callout: default;
	-webkit-user-select: text;
	user-select: text;
}

body.rcm-protect-overlay-open {
	overflow: hidden;
}

.rcm-protect-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background:
		radial-gradient(circle at 15% 15%, rgba(0, 112, 85, 0.2), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(15, 86, 179, 0.15), transparent 42%),
		rgba(8, 13, 20, 0.68);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	z-index: 2147483646;
}

.rcm-protect-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.rcm-protect-overlay__card {
	max-width: 520px;
	width: 100%;
	padding: clamp(18px, 4vw, 28px);
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
	color: #f5f8ff;
	font-family: "Manrope", "Inter", sans-serif;
	transform: translateY(10px) scale(0.98);
	animation: rcmProtectCardIn 220ms ease forwards;
}

.rcm-protect-overlay__eyebrow {
	margin: 0 0 10px;
	color: rgba(220, 235, 255, 0.9);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rcm-protect-overlay__body {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.rcm-protect-overlay__dismiss {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin-top: 16px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	padding: 11px 16px;
	cursor: pointer;
	transition: transform 140ms ease, background-color 140ms ease;
	text-align: center;
}

.rcm-protect-overlay__dismiss:hover,
.rcm-protect-overlay__dismiss:focus-visible {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.rcm-protect-toast {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translate(-50%, 20px);
	max-width: min(92vw, 520px);
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(12, 18, 30, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font-family: "Manrope", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	pointer-events: none;
	transition: transform 180ms ease, opacity 180ms ease;
	z-index: 2147483647;
}

.rcm-protect-toast.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
}

@keyframes rcmProtectCardIn {
	from {
		transform: translateY(10px) scale(0.98);
	}
	to {
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 575px) {
	.rcm-protect-overlay {
		padding: 16px;
	}

	.rcm-protect-overlay__card {
		border-radius: 14px;
	}

	.rcm-protect-overlay__body {
		font-size: 15px;
	}

	.rcm-protect-toast {
		border-radius: 12px;
	}
}
