/**
 * Advanced Anti-AdBlock Elite Overlay Styles
 * High-specificity rules to prevent cosmetic filter bypass.
 */

/* Full-screen overlay */
#aabe-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	z-index: 2147483647 !important;
	background: #ffffff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

/* Inner layout */
.aabe-overlay-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

/* Content card */
.aabe-overlay-content {
	text-align: center;
	max-width: 600px;
	padding: 40px;
	background: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aabe-overlay-content h1 {
	font-size: 28px;
	font-weight: 700;
	color: #dc3232;
	margin: 0 0 20px;
	line-height: 1.3;
}

.aabe-overlay-content p {
	font-size: 16px;
	color: #555555;
	margin: 0 0 30px;
	line-height: 1.6;
}

/* Recheck button */
.aabe-btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background: #dc3232;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}

.aabe-btn:hover,
.aabe-btn:focus {
	background: #b71c1c;
	outline: 2px solid #b71c1c;
	outline-offset: 2px;
}

/* Blur underlying content wrappers */
.aabe-blur {
	filter: blur(15px) !important;
	pointer-events: none !important;
	user-select: none !important;
	-webkit-user-select: none !important;
}

/* Prevent scrolling while locked */
html.aabe-locked,
body.aabe-locked {
	overflow: hidden !important;
}
