.spinning-wheel-offer {
	overflow: hidden;
}

.confetti-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 121;
}

.spinning-wheel {
	width: 400px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.spin-container {
	display: flex;
	justify-content: center;
}

.spin-wrap {
	position: relative;
	width: 400px;
	height: 404px;
	margin-inline: auto;
	transform-origin: center top;
	/* transform: scale(0.8); */
	/* transform: scale(0.7); */
}

@media ( max-width : 500px) {
	.spinning-wheel {
		width: auto;
	}
	.spin-wrap {
		transform: scale(0.8);
	}
	.spin-container {
		height: 324px;
		width: 320px;
	}
}

@media ( max-width : 400px) {
	.spin-wrap {
		transform: scale(0.7);
	}
	.spin-container {
		height: 284px;
		width: 280px;
	}
}

.spin-wrap:before {
	content: '';
	position: absolute;
	inset: -24px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, rgba(145, 150, 255, 0.3),
		rgba(240, 255, 150, 0.3), rgba(255, 143, 96, 0.3),
		rgba(52, 53, 121, 0.2), rgba(145, 150, 255, 0.3));
	filter: blur(20px);
	animation: rotateSlow 8s linear infinite;
	will-change: transform;
	z-index: 0;
}

@keyframes rotateSlow { 100% {
	transform: rotate(360deg);
}

}
.spin-wrap .slice path {
	stroke: #fff;
	stroke-width: 2px;
}

.spin-wrap .slice text {
	font-size: 16px;
	pointer-events: none;
	font-weight: bold;
	line-height: 1.4;
	--font-greet-standard: "Greet Standard", system-ui, sans-serif;
	font-family: var(--font-greet-standard);
}

.spinning-wheel svg {
	overflow: visible;
	position: relative;
	left: -10px;
	top: -23px;
	transform: rotate(-90deg);
	transform-origin: center;
}

.spin-text {
	transform: rotate(90deg);
	--font-toefl: "Greet Narrow", system-ui, sans-serif;
	font-family: var(--font-toefl);
}

.pointer-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.pointer-dot {
	width: 14px;
	height: 14px;
	background: #9196ff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(145, 150, 255, 0.8);
}

.pointer-body {
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 32px solid #343579;
	filter: drop-shadow(0 4px 8px rgba(52, 53, 121, 0.6));
}

.promo-list {
	font-size: 12px;
	list-style: none;
	padding: 0 0 0 10px;
	margin: 40px 0 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.promo-list li {
	display: flex;
	align-items: center;
	column-gap: 10px;
	--font-greet-standard: "Greet Standard", system-ui, sans-serif;
	font-family: var(--font-greet-standard);
}

.promo-list li span {
	width: 14px;
	height: 14px;
}

.resultDialog {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 120;
	justify-content: center;
	align-items: center;
}

.resultDialog::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(15, 12, 40, 0.82);
	backdrop-filter: blur(10px);
}

.resultDialog.is-open {
	display: flex;
}

.resultDialog>.dialog-inner {
	background: #fff;
	padding: 2rem;
	max-width: 480px;
	width: 90%;
	border-radius: 8px;
	position: relative;
	text-align: center;
}