body.lca-age-gate-locked {
	overflow: hidden !important;
	touch-action: none;
}

body.lca-age-gate-locked > *:not(#lca-age-gate-root) {
	filter: blur(14px) brightness(0.42);
	transition: filter 220ms ease;
	pointer-events: none !important;
	user-select: none;
}

.lca-age-gate {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 1;
	transition: opacity 220ms ease;
}

.lca-age-gate.is-hiding {
	opacity: 0;
	pointer-events: none;
}

.lca-age-gate__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.82)),
		rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.lca-age-gate__panel {
	position: relative;
	width: min(620px, 100%);
	border-radius: 22px;
	padding: 34px 30px 26px;
	background:
		linear-gradient(170deg, rgba(35, 35, 35, 0.78), rgba(12, 12, 12, 0.78)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 48%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow:
		0 26px 60px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
	color: #f5f5f5;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lca-age-gate__title {
	margin: 0 0 14px;
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.lca-age-gate__description {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
}

.lca-age-gate__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.lca-age-gate__btn {
	border: 0;
	border-radius: 14px;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 120ms ease, box-shadow 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.lca-age-gate__btn:focus-visible {
	outline: 2px solid #8ab4ff;
	outline-offset: 2px;
}

.lca-age-gate__btn:active {
	transform: translateY(1px);
}

.lca-age-gate__btn--confirm {
	background: #ffae0b;
	color: #141414;
	box-shadow: 0 12px 28px rgb(255 174 11 / 27%);
	text-shadow: 0 5px 6px #ffffff2e;
}

.lca-age-gate__btn--confirm:hover {
	background: #ffbc35;
	box-shadow: 0 16px 32px rgb(255 174 11 / 38%);
}

.lca-age-gate__btn--reject {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.lca-age-gate__btn--reject:hover {
	background: rgba(255, 255, 255, 0.14);
}

.lca-age-gate__note {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.65);
}

.lca-age-gate__error {
	margin: 10px 0 0;
	min-height: 18px;
	font-size: 13px;
	color: #ffb4b4;
}

@media (max-width: 640px) {
	.lca-age-gate {
		padding: 14px;
	}

	.lca-age-gate__panel {
		padding: 24px 18px 20px;
		border-radius: 18px;
	}

	.lca-age-gate__description {
		font-size: 15px;
	}

	.lca-age-gate__actions {
		grid-template-columns: 1fr;
	}
}

