.exotic-age-gate {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	font-family: "Open Sans", "Helvetica Neue", sans-serif;
}

.exotic-age-gate__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(6, 8, 12, 0.36) 0%, rgba(6, 8, 12, 0.58) 100%),
		rgba(6, 8, 12, 0.44);
	backdrop-filter: blur(3px) saturate(82%);
}

.exotic-age-gate__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 100%;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.exotic-age-gate__card {
	position: relative;
	width: min(100%, 560px);
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at top left, rgba(179, 18, 52, 0.05) 0%, rgba(179, 18, 52, 0) 24%),
		linear-gradient(180deg, rgba(17, 19, 25, 0.98) 0%, rgba(8, 10, 14, 0.98) 100%);
	box-shadow:
		0 26px 56px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	padding: 32px 32px 28px;
	color: #f3f4f6;
	text-align: left;
}

.exotic-age-gate__card--no-logo {
	padding-top: 30px;
}

.exotic-age-gate__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	color: rgba(243, 244, 246, 0.74);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.exotic-age-gate__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 46px;
	height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	color: #fff;
}

.exotic-age-gate__badge-number {
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}

.exotic-age-gate__badge-plus {
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	margin-top: -6px;
	margin-left: 1px;
	color: rgba(243, 244, 246, 0.68);
}

.exotic-age-gate__logo {
	margin: 0 0 22px;
}

.exotic-age-gate__logo img {
	display: block;
	max-width: 220px;
	max-height: 52px;
	width: auto;
}

.exotic-age-gate__title {
	margin: 0 0 16px;
	color: #fff;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(34px, 4vw, 46px);
	line-height: 1.04;
	letter-spacing: -0.035em;
}

.exotic-age-gate__description,
.exotic-age-gate__details {
	margin: 0 0 14px;
	color: rgba(243, 244, 246, 0.9);
	font-size: 16px;
	line-height: 1.68;
	max-width: 34ch;
}

.exotic-age-gate__details {
	margin-bottom: 26px;
	color: rgba(243, 244, 246, 0.7);
}

.exotic-age-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.exotic-age-gate__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 176px;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 14px;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-decoration: none;
	transition:
		transform 0.18s ease,
		background-color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease;
}

.exotic-age-gate__button--primary {
	background: var(--exotic-age-gate-accent, #b31234);
	box-shadow: 0 12px 22px rgba(179, 18, 52, 0.18);
	color: #fff;
}

.exotic-age-gate__button--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 24px rgba(179, 18, 52, 0.24);
}

.exotic-age-gate__button--secondary {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.02);
	color: #f3f4f6;
}

.exotic-age-gate__button--secondary:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.05);
}

.exotic-age-gate__button:focus-visible {
	outline: 2px solid rgba(179, 18, 52, 0.72);
	outline-offset: 2px;
}

html.exotic-age-gate-open,
body.exotic-age-gate-open {
	overflow: hidden !important;
}

@media all and (max-width: 640px) {
	.exotic-age-gate__dialog {
		padding: 16px;
	}

	.exotic-age-gate__card {
		padding: 28px 20px 20px;
		border-radius: 22px;
	}

	.exotic-age-gate__eyebrow {
		margin-bottom: 18px;
	}

	.exotic-age-gate__logo {
		margin-bottom: 18px;
	}

	.exotic-age-gate__logo img {
		max-height: 46px;
	}

	.exotic-age-gate__description,
	.exotic-age-gate__details {
		max-width: none;
	}

	.exotic-age-gate__actions {
		flex-direction: column;
	}

	.exotic-age-gate__button {
		width: 100%;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.exotic-age-gate__button {
		transition: none;
	}
}
