.nuqati-gift-layer {
	--nuqati-purple: #7d1f7d;
	--nuqati-gold: #f9c21b;
	--nuqati-gold-light: #ffdc62;
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	overflow: hidden;
	pointer-events: none;
	contain: strict;
}

.nuqati-gift {
	--gift-size: 48px;
	--gift-x: 50vw;
	--gift-delay: 0s;
	--gift-duration: 4.8s;
	--gift-drift: 0px;
	--gift-start-rotation: -7deg;
	--gift-end-rotation: 10deg;
	--gift-box: var(--nuqati-purple);
	--gift-lid: #943194;
	--gift-ribbon: var(--nuqati-gold);
	position: absolute;
	left: var(--gift-x);
	bottom: calc(-1 * var(--gift-size) - 24px);
	width: var(--gift-size);
	height: var(--gift-size);
	opacity: 0;
	filter: drop-shadow(0 12px 16px rgba(56, 14, 57, 0.22));
	animation: nuqati-gift-rise var(--gift-duration) cubic-bezier(0.19, 0.7, 0.25, 1)
		var(--gift-delay) both;
	will-change: transform, opacity;
}

.nuqati-gift__box {
	position: absolute;
	left: 8%;
	bottom: 0;
	width: 84%;
	height: 64%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 5px 5px 9px 9px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 42%),
		var(--gift-box);
}

.nuqati-gift__box::after {
	content: "";
	position: absolute;
	inset: auto -20% -50% 18%;
	height: 90%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(-18deg);
}

.nuqati-gift__lid {
	position: absolute;
	left: 2%;
	bottom: 58%;
	width: 96%;
	height: 20%;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 6px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 50%),
		var(--gift-lid);
}

.nuqati-gift__ribbon {
	position: absolute;
	left: 42%;
	bottom: 0;
	width: 16%;
	height: 78%;
	background: linear-gradient(90deg, var(--gift-ribbon), var(--nuqati-gold-light));
	box-shadow: inset 1px 0 rgba(255, 255, 255, 0.35);
}

.nuqati-gift__lid::after {
	content: "";
	position: absolute;
	left: 42%;
	top: 0;
	width: 16%;
	height: 100%;
	background: var(--gift-ribbon);
}

.nuqati-gift__bow,
.nuqati-gift__bow::before,
.nuqati-gift__bow::after {
	position: absolute;
	display: block;
}

.nuqati-gift__bow {
	left: 44%;
	bottom: 77%;
	width: 12%;
	height: 12%;
	border-radius: 50%;
	background: var(--gift-ribbon);
}

.nuqati-gift__bow::before,
.nuqati-gift__bow::after {
	content: "";
	bottom: -8%;
	width: 130%;
	height: 160%;
	border: 3px solid var(--gift-ribbon);
	border-radius: 65% 55% 65% 55%;
}

.nuqati-gift__bow::before {
	right: 55%;
	transform: rotate(18deg);
}

.nuqati-gift__bow::after {
	left: 55%;
	transform: rotate(-18deg);
}

.nuqati-gift--gold {
	--gift-box: #f9c21b;
	--gift-lid: #ffd14f;
	--gift-ribbon: #7d1f7d;
}

.nuqati-gift--white {
	--gift-box: #fff;
	--gift-lid: #fff9e5;
	--gift-ribbon: #7d1f7d;
}

@keyframes nuqati-gift-rise {
	0% {
		opacity: 0;
		transform: translate3d(0, 13vh, 0) rotate(var(--gift-start-rotation)) scale(0.76);
	}
	14% {
		opacity: 1;
	}
	84% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(var(--gift-drift), -124vh, 0) rotate(var(--gift-end-rotation))
			scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nuqati-gift-layer {
		display: none !important;
	}
}

