/* ShemalePunishers entry overlay.
   Site-specific names avoid generic banner/dialog selectors that browser
   cosmetic filters may remove. */

html.sp-lock,
body.sp-lock {
	overflow: hidden;
}

body.sp-lock > header,
body.sp-lock > main,
body.sp-lock > footer {
	filter: blur(8px);
	pointer-events: none;
	user-select: none;
}

.sp_entry {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 24px;
	font-family: "Roboto", Arial, sans-serif;
}

.sp_entry.is-hidden {
	display: none;
}

.sp_shade {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.76);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

.sp_card {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	box-sizing: border-box;
	padding: 30px 34px 28px;
	border: 1px solid #d60000;
	border-radius: 6px;
	background: #111;
	color: #fff;
	text-align: center;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.58);
}

.sp_logo {
	display: block;
	width: min(300px, 88%);
	height: auto;
	margin: 0 auto 18px;
}

.sp_age {
	margin: 0 0 12px;
	font-size: 42px;
	line-height: 1;
	font-weight: 900;
	color: #d60000;
}

.sp_title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 800;
	text-transform: uppercase;
}

.sp_text {
	margin: 0 auto 12px;
	max-width: 480px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 400;
	color: #d7d7d7;
}

.sp_text a {
	color: #f3e49b;
	font-weight: 700;
	text-decoration: none;
}

.sp_text a:hover,
.sp_text a:focus {
	text-decoration: underline;
}

.sp_actions {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
	flex-wrap: wrap;
}

.sp_button {
	appearance: none;
	-webkit-appearance: none;
	min-width: 190px;
	padding: 14px 18px;
	border: 0;
	border-radius: 3px;
	font-family: inherit;
	font-size: 15px;
	line-height: 1;
	font-weight: 800;
	cursor: pointer;
	text-transform: uppercase;
}

.sp_enter {
	background: #d60000;
	color: #fff;
}

.sp_exit {
	min-width: 120px;
	background: transparent;
	color: #f3e49b;
}

.sp_button:hover,
.sp_button:focus {
	transform: translateY(-1px);
}

@media (max-width: 540px) {
	.sp_entry {
		padding: 16px;
	}

	.sp_card {
		padding: 24px 18px 22px;
	}

	.sp_logo {
		width: min(270px, 90%);
	}

	.sp_age {
		font-size: 36px;
	}

	.sp_title {
		font-size: 17px;
	}

	.sp_button {
		width: 100%;
		min-width: 0;
	}
}
