/* =====================================================================
   Expoverse — booth-entry CTA hint (Lottie + text, autocloses)
   ---------------------------------------------------------------------
   Centered glass popup shown the first time you enter a booth: the
   hand-tap Lottie (lottie/cta.json) + an instruction line. Auto-closes
   after ~3s; click to dismiss early. Driven by cta.js.
   ===================================================================== */
.expo-cta {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.9);
	z-index: 2147482300;
	width: min(360px, 86vw);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 14px 26px 26px;
	font-family: var(--expo-font, system-ui, sans-serif);
	color: var(--expo-ink, #f4f7ff);
	text-align: center;
	/* dark glass so the text stays readable over bright scenes */
	background: linear-gradient(158deg, rgba(255, 255, 255, .12), rgba(11, 14, 24, .68));
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 22px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .22);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	backdrop-filter: blur(16px) saturate(150%);
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transition: opacity .3s var(--expo-ease, ease), transform .46s var(--expo-elastic, cubic-bezier(.34, 1.56, .64, 1));
}
.expo-cta::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--expo-accent-1, #5eead4), var(--expo-accent-2, #818cf8));
}
.expo-cta.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }

.expo-cta__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: var(--expo-ink, #f4f7ff);
	cursor: pointer;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	transition: background .15s ease, transform .15s ease;
}
.expo-cta__close svg { width: 13px; height: 13px; display: block; }
.expo-cta__close:hover { background: rgba(255, 255, 255, .2); }
.expo-cta__close:active { transform: scale(.92); }

.expo-cta__lottie { width: 132px; height: 132px; margin: 0 auto -6px; }
.expo-cta__lottie svg { display: block; }
.expo-cta__text { font-size: 15.5px; font-weight: 600; line-height: 1.5; color: rgba(244, 247, 255, .94); }
.expo-cta__hint { font-size: 12px; color: var(--expo-ink-dim, rgba(244, 247, 255, .6)); }

@media (prefers-reduced-motion: reduce) {
	.expo-cta { transition: opacity .2s; }
	.expo-cta.is-on { transform: translate(-50%, -50%); }
}
