/* Age verification overlay — full-viewport, above modals */
body.age-gate-open {
	overflow: hidden;
}

.age-gate-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100050;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	background: rgba(8, 6, 14, 0.82);
	backdrop-filter: blur(4px);
}

.age-gate-overlay.age-gate--visible {
	display: flex;
}

.age-gate-dialog {
	width: 100%;
	max-width: 420px;
	padding: 28px 26px 22px;
	border-radius: 18px;
	background: #141018;
	border: 1px solid #2a2233;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
	box-sizing: border-box;
}

.age-gate-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.age-gate-logo {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.06em;
	color: #fff;
	background: linear-gradient(135deg, #e040a0 0%, #7c3aed 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.age-gate-site {
	font-size: 18px;
	font-weight: 700;
	color: #f5f5f5;
	line-height: 1.2;
}

.age-gate-tag {
	font-size: 12px;
	color: #8a8794;
	margin-top: 4px;
}

.age-gate-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: #fafafa;
	line-height: 1.35;
}

.age-gate-desc {
	margin: 0 0 22px;
	font-size: 13px;
	line-height: 1.5;
	color: #9a96a3;
}

.age-gate-actions {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.age-gate-btn {
	flex: 1;
	cursor: pointer;
	border: none;
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.age-gate-btn:active {
	transform: scale(0.98);
}

.age-gate-btn--yes {
	color: #0d0d0d;
	background: linear-gradient(180deg, #4ade80 0%, #22c55e 45%, #16a34a 100%);
	box-shadow: 0 4px 0 #14532d, inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.age-gate-btn--yes:hover {
	box-shadow: 0 5px 0 #14532d, inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.age-gate-btn--no {
	color: #0d0d0d;
	background: linear-gradient(180deg, #f87171 0%, #dc2626 50%, #b91c1c 100%);
	box-shadow: 0 4px 0 #7f1d1d, inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.age-gate-btn--no:hover {
	box-shadow: 0 5px 0 #7f1d1d, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.age-gate-note {
	margin: 0;
	font-size: 11px;
	color: #6b6775;
	text-align: center;
	line-height: 1.4;
}
