html.age-gate-lock,
body.age-gate-open {
	overflow: hidden;
}

.age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(10, 10, 10, 0.78);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	font-family: Arial, Helvetica, sans-serif;
	color: #1a1a1a;
}

html.age-gate-lock .age-gate {
	display: flex;
}

.age-gate__card {
	width: 100%;
	max-width: 920px;
	max-height: min(94vh, 780px);
	display: flex;
	flex-direction: column;
	background: #fff;
	border-top: 4px solid #b5121b;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}

.age-gate__head {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	background: #2f2f2f;
	flex-shrink: 0;
}

.age-gate__logo-img {
	max-height: 44px;
	width: auto;
	display: block;
}

.age-gate__logo-text {
	display: flex;
	align-items: baseline;
	gap: 2px;
	color: #fff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.age-gate__logo-name {
	color: #fff;
}

.age-gate__body {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	min-height: 0;
	flex: 1;
	background: #fff;
}

.age-gate__col--text {
	padding: 22px 26px 24px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	min-height: 0;
}

.age-gate__col--media {
	position: relative;
	background: #0a0a0a;
	min-height: 280px;
	overflow: hidden;
}

.age-gate__hero {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.age-gate__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.age-gate__text {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.55;
	color: #333;
}

.age-gate__text strong {
	font-weight: 700;
}

.age-gate__lead {
	margin: 18px 0 10px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #c41e3a;
}

.age-gate__list {
	margin: 0 0 16px;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.55;
	color: #333;
}

.age-gate__list li {
	margin: 0 0 6px;
}

.age-gate__bound {
	margin: 0 0 20px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #c41e3a;
}

.age-gate__actions {
	display: flex;
	gap: 10px;
	align-items: stretch;
	flex-wrap: wrap;
}

.age-gate__btn {
	border: none;
	border-radius: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.08em;
	cursor: pointer;
	padding: 15px 22px;
	transition: background 0.15s ease, transform 0.1s ease;
}

.age-gate__btn:active {
	transform: scale(0.98);
}

.age-gate__btn--enter {
	flex: 1 1 180px;
	background: #c41e3a;
	color: #fff;
}

.age-gate__btn--enter:hover {
	background: #a51830;
}

.age-gate__btn--leave {
	flex: 0 1 120px;
	background: #1a1a1a;
	color: #fff;
}

.age-gate__btn--leave:hover {
	background: #000;
}

/* —— Mobile: text-only floating card (like reference) —— */
@media (max-width: 780px) {
	.age-gate {
		align-items: flex-start;
		justify-content: center;
		padding: 12px 10px 16px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.age-gate__card {
		max-width: 480px;
		max-height: none;
		width: 100%;
		margin: 8px auto 20px;
		border-radius: 0;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
	}

	.age-gate__head {
		padding: 12px 14px;
	}

	.age-gate__logo-img {
		max-height: 36px;
	}

	.age-gate__logo-text {
		font-size: 20px;
	}

	.age-gate__body {
		display: block;
	}

	/* Hide side image on mobile — text + buttons only */
	.age-gate__col--media {
		display: none !important;
	}

	.age-gate__col--text {
		padding: 16px 14px 18px;
		overflow: visible;
	}

	.age-gate__text,
	.age-gate__list {
		font-size: 13.5px;
	}

	.age-gate__lead,
	.age-gate__bound {
		font-size: 12.5px;
	}

	.age-gate__actions {
		flex-direction: column;
		gap: 10px;
		margin-top: 4px;
	}

	.age-gate__btn--enter,
	.age-gate__btn--leave {
		flex: none;
		width: 100%;
		padding: 16px 18px;
		font-size: 16px;
	}
}
