.sw-floating-gift {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #ff4757;
	color: white;
	width: 60px;
	height: 60px;
	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;
}
.sw-floating-gift:hover {
	transform: scale(1.1);
}

.sw-modal {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sw-modal-content {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	width: 90%;
	max-width: 400px;
}
.sw-close {
	position: absolute;
	top: 10px; right: 15px;
	font-size: 24px;
	cursor: pointer;
}
#sw-wheel-container {
	position: relative;
	margin: 20px auto;
	width: 300px;
	height: 300px;
}
#sw-canvas-4db0c3fc {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: transform 3s ease-out;
}
.sw-pointer {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 30px;
	color: #333;
	z-index: 2;
}
#sw-form-container-4db0c3fc {
	margin-top: 20px;
}
#sw-email-4db0c3fc {
	padding: 10px;
	width: 70%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
#sw-spin-btn-4db0c3fc {
	padding: 10px 20px;
	background: #2ed573;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#sw-result-container-4db0c3fc {
	margin-top: 20px;
}
#sw-code-box-4db0c3fc {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}
#sw-win-code-4db0c3fc {
	padding: 10px;
	font-weight: bold;
	text-align: center;
	border: 2px dashed #ff4757;
}
#sw-copy-btn-4db0c3fc {
	padding: 10px;
	background: #1e90ff;
	color: #fff;
	border: none;
	cursor: pointer;
}