/* Age gate (external: webDate main.html cannot use raw { } — parseVariables). */
#age-verify-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	background: rgba(0, 0, 0, 0.88);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
#age-verify-overlay.age-verify--dismissed {
	display: none;
}
#age-verify-box {
	max-width: 420px;
	width: 100%;
	background: #1a1a1a;
	color: #eee;
	border: 2px solid #ff9900;
	border-radius: 8px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#age-verify-box h1 {
	margin: 0 0 12px;
	font-size: 22px;
	color: #ff9900;
}
#age-verify-box p {
	margin: 0 0 22px;
	line-height: 1.45;
	font-size: 14px;
	color: #ddd;
}
.age-verify-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.age-verify-actions button {
	cursor: pointer;
	border: none;
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: bold;
}
#age-verify-enter {
	background: #ff9900;
	color: #111;
}
#age-verify-enter:hover {
	background: #ffb84d;
}
#age-verify-exit {
	background: #444;
	color: #eee;
}
#age-verify-exit:hover {
	background: #555;
}
@media (min-width: 480px) {
	.age-verify-actions {
		flex-direction: row;
		justify-content: center;
	}
}
