/* First-visit 18+ age gate */
.wv-age-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(18, 10, 16, 0.72);
	backdrop-filter: blur(6px);
}

.wv-age-gate[hidden] {
	display: none !important;
}

.wv-age-gate__dialog {
	width: min(760px, 100%);
	max-height: min(96vh, 1100px);
	overflow: auto;
	border-radius: 18px;
	background:
		radial-gradient(ellipse at top, rgba(255, 170, 200, 0.28), transparent 50%),
		linear-gradient(180deg, #fff8fb 0%, #ffe9f2 100%);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	padding: 22px 22px 24px;
	text-align: center;
	color: #2a1f24;
}

.wv-age-gate__art {
	width: min(700px, 92vw);
	height: auto;
	border-radius: 14px;
	display: block;
	margin: 0 auto 14px;
	box-shadow: 0 10px 28px rgba(90, 20, 45, 0.22);
}

.wv-age-gate__title {
	margin: 0 0 8px;
	font-size: clamp(1.35rem, 3vw, 1.65rem);
	line-height: 1.2;
	color: #c43d6d;
}

.wv-age-gate__text {
	margin: 0 0 18px;
	font-size: 0.98rem;
	line-height: 1.45;
	color: #4a3840;
}

.wv-age-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.wv-age-gate__btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	border-radius: 999px;
	padding: 0.75em 1.25em;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wv-age-gate__btn:hover,
.wv-age-gate__btn:focus {
	transform: translateY(-1px);
}

.wv-age-gate__btn--enter,
.wv-age-gate__btn--exit {
	background: linear-gradient(135deg, #e85a8a 0%, #c43d6d 100%);
	color: #fff;
	box-shadow: 0 8px 20px rgba(196, 61, 109, 0.35);
}

.wv-age-gate__btn--enter:hover,
.wv-age-gate__btn--enter:focus,
.wv-age-gate__btn--exit:hover,
.wv-age-gate__btn--exit:focus {
	filter: brightness(1.05);
	color: #fff;
}

body.wv-age-gate-open {
	overflow: hidden;
}
