/* MKL Anti-AdBlock — aviso de bloqueador de anúncios */

.mkl-adblock-lock {
	overflow: hidden !important;
}

.mkl-adblock-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483000; /* acima de quase tudo */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.82);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	animation: mkl-adblock-fade 0.2s ease-out;
}

@keyframes mkl-adblock-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.mkl-adblock-box {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 460px;
	padding: 40px 32px 32px;
	border-radius: 14px;
	background: #1c1f24;
	color: #f2f4f7;
	text-align: center;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	animation: mkl-adblock-pop 0.22s ease-out;
}

@keyframes mkl-adblock-pop {
	from { transform: translateY(8px) scale(0.98); opacity: 0; }
	to   { transform: translateY(0) scale(1); opacity: 1; }
}

.mkl-adblock-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #cfd4da;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.mkl-adblock-close:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.mkl-adblock-brand {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: -0.5px;
	margin-bottom: 18px;
	color: #ff7a00;
}
.mkl-adblock-brand strong {
	font-weight: 700;
	color: #f2f4f7;
}

.mkl-adblock-title {
	margin: 0 0 12px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.mkl-adblock-message {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.55;
	color: #b9bfc7;
}

.mkl-adblock-button {
	display: block;
	width: 100%;
	padding: 14px 18px;
	border: 0;
	border-radius: 8px;
	background: #1a73e8;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}
.mkl-adblock-button:hover {
	background: #1666cc;
}

@media (max-width: 480px) {
	.mkl-adblock-box {
		padding: 34px 20px 24px;
	}
	.mkl-adblock-brand { font-size: 26px; }
	.mkl-adblock-title { font-size: 19px; }
}
