.gamified-wheel-floating-btn-20 {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #ff5722;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	z-index: 9999;
	transition: transform 0.3s;
}
.gamified-wheel-floating-btn-20:hover {
	transform: scale(1.1);
}

.gamified-wheel-popup-overlay-20 {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gamified-wheel-popup-content-20 {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	max-width: 400px;
	width: 90%;
}

.gamified-wheel-close-20 {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
}

.gamified-wheel-container-20 {
	position: relative;
	margin: 20px auto;
	width: 300px;
	height: 300px;
}

.gamified-wheel-container-20 canvas {
	width: 100%;
	height: 100%;
	transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.gamified-wheel-pointer-20 {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 25px solid #333;
	z-index: 10;
}

#gamified-wheel-form-20 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

#gamified-wheel-form-20 input,
#gamified-wheel-form-20 button {
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

#gamified-wheel-form-20 button,
#gamified-wheel-copy-btn-20 {
	background: #ff5722;
	color: #fff;
	border: none;
	cursor: pointer;
}

.gamified-wheel-code-20 {
	font-size: 24px;
	font-weight: bold;
	margin: 10px 0;
	color: #ff5722;
}

.gamified-wheel-terms-20 {
	font-size: 12px;
	color: #777;
	margin-top: 15px;
}