.aav-age-gate {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(32px, 8vh, 92px) 24px 24px;
	background: rgba(244, 247, 250, 0.62);
	-webkit-backdrop-filter: blur(5px) saturate(0.8);
	backdrop-filter: blur(5px) saturate(0.8);
	opacity: 1;
	animation: aav-overlay-in 420ms ease both;
	transition: opacity 260ms ease;
}

.aav-age-allowed .aav-age-gate,
.aav-age-denied .aav-age-gate {
	display: none !important;
}

.aav-age-blocked {
	display: none;
}

.aav-age-denied,
.aav-age-denied body {
	overflow: hidden !important;
}

.aav-age-denied .aav-age-blocked {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 100%;
	padding: 28px;
	background: #fff;
	color: #303033;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	text-align: center;
}

.aav-age-blocked-inner {
	animation: aav-blocked-in 550ms cubic-bezier(0.2, 0.9, 0.25, 1.1) both;
}

.aav-warning-icon {
	display: block;
	width: 122px;
	height: auto;
	margin: 0 auto 34px;
}

.aav-blocked-title {
	margin: 0;
	color: #303033;
	font-size: clamp(38px, 5.2vw, 62px);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.aav-blocked-title strong {
	font-weight: 800;
}

.aav-age-pending,
.aav-age-pending body {
	overflow: hidden !important;
}

.aav-age-card {
	width: min(100%, 620px);
	box-sizing: border-box;
	padding: 27px 38px 30px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 55px rgba(30, 41, 59, 0.2), 0 2px 8px rgba(30, 41, 59, 0.08);
	color: #26313d;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: center;
	animation: aav-card-in 560ms cubic-bezier(0.2, 0.9, 0.25, 1.15) both;
	transition: opacity 220ms ease, transform 260ms ease;
}

.aav-age-badge {
	display: none;
}

.aav-age-card h2 {
	margin: 0 0 9px;
	color: #26313d;
	font-size: clamp(24px, 4vw, 31px);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.aav-age-card p {
	margin: 0 auto 22px;
	max-width: 500px;
	color: #64707d;
	font-size: 14px;
	line-height: 1.48;
}

.aav-age-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.aav-button {
	width: auto;
	min-width: 158px;
	min-height: 43px;
	box-sizing: border-box;
	padding: 11px 22px;
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 650;
	box-shadow: 0 6px 15px rgba(15, 23, 42, 0.12);
	transition: transform 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.aav-button:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
	box-shadow: 0 9px 20px rgba(15, 23, 42, 0.17);
}

.aav-button:focus-visible {
	outline: 3px solid #fbbf24;
	outline-offset: 3px;
}

.aav-button-primary {
	background: #19b83f;
	color: #fff;
}

.aav-button-secondary {
	background: #10151a;
	color: #fff;
}

.aav-age-gate.aav-age-leaving {
	opacity: 0;
	pointer-events: none;
}

.aav-age-gate.aav-age-leaving .aav-age-card {
	opacity: 0;
	transform: translateY(-18px) scale(0.98);
}

@keyframes aav-overlay-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes aav-card-in {
	from {
		opacity: 0;
		transform: translateY(-24px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes aav-blocked-in {
	from {
		opacity: 0;
		transform: translateY(15px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 520px) {
	.aav-age-gate {
		padding: 28px 14px 14px;
	}

	.aav-age-card {
		padding: 25px 20px 24px;
		border-radius: 19px;
	}

	.aav-age-actions {
		flex-direction: column;
	}

	.aav-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aav-age-gate,
	.aav-age-card,
	.aav-age-blocked-inner,
	.aav-button {
		animation: none;
		transition: none;
	}
}
