/* AGE GATE */
.age-gate {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.98);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(6px);
	transition: opacity 0.4s ease;
}

.age-gate.hidden {
	display: none;
}

.age-gate-card {
	background: #fff;
	border-radius: 20px;
	padding: 52px 44px;
	max-width: 440px;
	width: 90%;
	text-align: center;
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.14);
}

.age-gate-logo {
	max-width: 200px;
	height: auto;
	margin: 0 auto 24px;
	display: block;
}

.age-gate-card h2 {
	font-size: 1.55rem;
	font-weight: 800;
	color: #001367;
	margin-bottom: 28px;
	line-height: 1.25;
}

.age-gate-question {
	font-size: 1.05rem;
	color: #444;
	margin-bottom: 28px;
	font-weight: 600;
}

.age-gate-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 24px;
}

.age-gate-btn {
	padding: 11px 40px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	background: #2a2a2a;
	color: #fff;
}

.age-gate-btn:hover {
	background: #001367;
	transform: translateY(-1px);
}

.age-gate-note {
	font-size: 0.8rem;
	color: #999;
	line-height: 1.5;
	max-width: 320px;
	margin: 0 auto;
}
