/* ─── Easter Egg Hunt ─── */

/* ─── Egg Element ─── */
.xe-k9 {
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.6s ease;
	animation: xk9-b 3s ease-in-out infinite;
}

.xe-k9 img {
	height: 24px;
	width: auto;
	display: block;
}

/* Claiming state */
.xe-k9--cx {
	animation: xk9-p 0.4s ease-in-out infinite;
}

/* Found animation */
.xe-k9--fx {
	transform: scale(1.5);
	opacity: 0;
	pointer-events: none;
}

@keyframes xk9-b {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-4px);
	}
}

@keyframes xk9-p {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}
}

/* ─── Popup Overlay ─── */
.easter-egg-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	padding: 16px;
}

.easter-egg-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ─── Popup Container ─── */
.easter-egg-popup {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1100px;
	height: fit-content;
	padding: 64px 100px;
	border-radius: 16px;
	text-align: center;
	transform: scale(0.95) translateY(10px);
	transition: transform 0.35s ease;
	overflow: hidden;
	background: url('../img/xk9/bg-regular.webp') center / cover no-repeat;
}

.easter-egg-overlay.active .easter-egg-popup {
	transform: scale(1) translateY(0);
}

/* Completion popup */
.easter-egg-popup--completion {
	background: url('../img/xk9/bg-completed.webp') center / cover no-repeat;
}

/* ─── Close Button ─── */
.easter-egg-popup__close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 10;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	transition: opacity 0.6s ease;
}

.easter-egg-popup__close img {
	width: 38px;
	height: 38px;
	filter: drop-shadow(8px 18px 25px rgba(0, 0, 0, 0.40));
}

.easter-egg-popup__close:hover {
	opacity: 0.8;
}

/* ─── Inner Wrapper ─── */
.easter-egg-popup__wrapper {
	width: 100%;
	flex: 1;
	filter: drop-shadow(8px 18px 25px rgba(0, 0, 0, 0.40));
	padding: 54px 64px;
	border-radius: 20px;
	border: 2px solid rgba(183, 242, 255, 0.20);
	overflow: hidden;
	background: url('../img/xk9/bg-wrapper.webp') center / cover no-repeat;
	display: flex;
	flex-flow: column nowrap;
	gap: 24px;
}

/* ─── Egg Progress Row ─── */
.easter-egg-popup__progress-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.easter-egg-popup__egg {
	height: 72px;
	width: auto;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.easter-egg-popup__egg.found {
	filter: drop-shadow(0 3px 20px rgba(63, 255, 226, 0.86));
}

/* ─── Title ─── */
.easter-egg-popup__title {
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.easter-egg-popup__title span {
	color: #51E1C8;
}

.easter-egg-popup--completion .easter-egg-popup__title {
	background: linear-gradient(to right, #E0F4FF, #1DAA91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 54px;
	text-transform: uppercase;
	width: fit-content;
	text-align: center;
	margin: 0 auto;
}

/* ─── Subtitle ─── */
.easter-egg-popup__subtitle {
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
}

.easter-egg-popup--completion .easter-egg-popup__subtitle {
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	margin-top: -12px;
}

/* ─── Offer Card ─── */
.easter-egg-popup__offer-card {
	border-radius: 10px;
	border: 1px solid rgba(183, 242, 255, 0.25);
	background: radial-gradient(51.55% 43.23% at 70.4% 31.32%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
	padding: 36px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: 24px;
	backdrop-filter: blur(10px);
}

.easter-egg-popup__offer-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: #1DAA91;
	filter: blur(80px);
	z-index: -1;
}

.easter-egg-popup__offer-promo {
	color: #51E1C8;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.easter-egg-popup--completion .easter-egg-popup__offer-promo {
	font-size: 22px;
}

.easter-egg-popup--completion .easter-egg-popup__offer-promo span {
	font-weight: 500;
}

.easter-egg-popup__offer-code {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.easter-egg-popup__offer-code-label {
	color: #FFF;
	font-family: "Plus Jakarta Sans";
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	margin-top: 6px;
}

.easter-egg-popup__offer-code-value {
	font-family: "Plus Jakarta Sans";
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(145deg, #E0F4FF, #1DAA91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: opacity 0.3s ease;
}

/* ─── Footer ─── */
.easter-egg-popup__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
}

.easter-egg-popup__expires {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #FFF;
	font-family: "Plus Jakarta Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.easter-egg-popup__terms {
	color: #FFF;
	text-align: center;
	text-shadow: 1.291px 3.874px 5.165px rgba(0, 0, 0, 0.40);
	font-family: "Plus Jakarta Sans";
	font-size: 16px;
	font-style: italic;
	font-weight: 300;
	line-height: 1;
}

/* ─── CTA Button ─── */
.easter-egg-popup__cta {
	margin: 12px 0;
	align-self: center;
	display: flex;
	width: fit-content;
	height: 86px;
	padding: 24.945px 48.465px 24.945px 55.592px;
	justify-content: center;
	align-items: center;
	gap: 7.127px;
	border-radius: 14.254px;
	border: 1.425px solid #BDFF7A;
	background: linear-gradient(116deg, #000 7.01%, #091722 96.52%);
	box-shadow: 0 0 21.382px 0 rgba(38, 247, 221, 0.60) inset, 0 0 10.691px 0 rgba(38, 247, 221, 0.60) inset, 6.455px 14.523px 20.171px 0 rgba(0, 0, 0, 0.60), 0 0 40.343px 0 rgba(253, 227, 133, 0.30);
	text-decoration: none !important;
	position: relative;
	overflow: hidden;
}

.easter-egg-popup__cta span {
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
	position: relative;
	z-index: 10;
}

.easter-egg-popup__cta img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0px;
	width: 180px;
	height: auto;
	z-index: 1;
}

.easter-egg-popup__cta::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -33.22px;
	width: 370.437px;
	height: 47.235px;
	border-radius: 360px;
	background: #26F7DD;
	filter: blur(24px);
	z-index: 0;
	transition: all 0.5s ease;
}

.easter-egg-popup__cta:hover::after {
	bottom: -15px;
}


/* ─── Responsive ─── */
@media (max-width: 992px) {
	.easter-egg-popup {
		padding: 48px 76px;
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}

	.easter-egg-popup__wrapper {
		padding: 36px;
	}

	.easter-egg-popup__title {
		font-size: 36px;
	}

	.easter-egg-popup--completion .easter-egg-popup__title {
		font-size: 46px;
	}

	.easter-egg-popup--completion .easter-egg-popup__subtitle {
		font-size: 30px;
	}

	.easter-egg-popup__offer-card {
		padding: 28px;
	}

	.easter-egg-popup__cta span {
		font-size: 24px;
	}

	.easter-egg-popup__footer {
		flex-flow: column nowrap;
		gap: 10px;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.easter-egg-popup {
		padding: 48px 76px;
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}

	.easter-egg-popup__wrapper {
		padding: 36px;
	}

	.easter-egg-popup__progress-dots {
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}

	.easter-egg-popup__egg {
		flex: 1 1 0;
		min-width: 0;
		height: auto;
		max-width: 100%;
	}

	.easter-egg-popup__title {
		font-size: 32px;
	}

	.easter-egg-popup--completion .easter-egg-popup__title {
		font-size: 32px;
	}

	.easter-egg-popup--completion .easter-egg-popup__subtitle {
		font-size: 24px;
	}

	.easter-egg-popup--completion .easter-egg-popup__offer-code-value {
		font-size: 28px;
	}

	.easter-egg-popup__offer-card {
		padding: 28px;
	}

	.easter-egg-popup__cta {
		width: 100%;
		padding: 18px;
	}

	.easter-egg-popup__cta span {
		font-size: 22px;
	}

	.easter-egg-popup__footer {
		flex-flow: column nowrap;
		gap: 10px;
		align-items: center;
	}
}

@media (max-width: 640px) {
	.easter-egg-popup {
		padding: 18px;
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}

	.easter-egg-popup__wrapper {
		padding: 36px;
	}

	.easter-egg-popup__progress-dots {
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}

	.easter-egg-popup__egg {
		flex: 1 1 0;
		min-width: 0;
		height: auto;
		max-width: 100%;
	}

	.easter-egg-popup__title {
		font-size: 26px;
	}

	.easter-egg-popup--completion .easter-egg-popup__title {
		font-size: 26px;
	}

	.easter-egg-popup--completion .easter-egg-popup__subtitle {
		font-size: 20px;
	}

	.easter-egg-popup__offer-card {
		padding: 28px;
	}

	.easter-egg-popup__offer-promo {
		font-size: 26px;
	}

	.easter-egg-popup__offer-code-label {
		font-size: 16px;
	}

	.easter-egg-popup__offer-code-value {
		font-size: 32px;
	}

	.easter-egg-popup--completion .easter-egg-popup__offer-code-value {
		font-size: 24px;
	}

	.easter-egg-popup__cta {
		width: 100%;
		padding: 18px;
	}

	.easter-egg-popup__cta span {
		font-size: 22px;
	}

	.easter-egg-popup__footer {
		flex-flow: column nowrap;
		gap: 10px;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.easter-egg-overlay {
		padding: 12px;
	}

	.easter-egg-popup {
		padding: 18px;
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}

	.easter-egg-popup__wrapper {
		padding: 24px;
	}

	.easter-egg-popup__progress-dots {
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}

	.easter-egg-popup__egg {
		flex: 1 1 0;
		min-width: 0;
		height: auto;
		max-width: 100%;
	}

	.easter-egg-popup__title {
		font-size: 20px;
	}

	.easter-egg-popup--completion .easter-egg-popup__title {
		font-size: 26px;
	}

	.easter-egg-popup__subtitle {
		font-size: 16px;
	}

	.easter-egg-popup--completion .easter-egg-popup__subtitle {
		font-size: 18px;
	}

	.easter-egg-popup__offer-card {
		padding: 28px;
	}

	.easter-egg-popup__offer-promo {
		font-size: 24px;
	}

	.easter-egg-popup--completion .easter-egg-popup__offer-promo {
		font-size: 18px;
	}

	.easter-egg-popup__offer-code-label {
		font-size: 15px;
	}

	.easter-egg-popup--completion .easter-egg-popup__offer-code-label {
		font-size: 13px;
	}

	.easter-egg-popup__offer-code-value {
		font-size: 30px;
	}

	.easter-egg-popup--completion .easter-egg-popup__offer-code-value {
		font-size: 24px;
	}

	.easter-egg-popup__cta {
		width: 100%;
		padding: 18px;
	}

	.easter-egg-popup__cta span {
		font-size: 20px;
	}

	.easter-egg-popup__footer {
		flex-flow: column nowrap;
		gap: 10px;
		align-items: center;
	}
}