/* Spin The Wheel Styles */
.stw-2685-wrapper {
	font-family: 'Cairo', sans-serif;
	direction: rtl;
}

.stw-2685-floating-icon {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #2563EB;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	z-index: 9999;
	transition: transform 0.3s ease;
	animation: stw-bounce 2s infinite;
}

.stw-2685-floating-icon:hover {
	transform: scale(1.1);
}

@keyframes stw-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

.stw-2685-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.stw-2685-modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.stw-2685-modal-overlay.active {
	display: flex;
}

.stw-2685-modal-overlay.active .stw-2685-modal-content {
	transform: translateY(0);
	opacity: 1;
}

.stw-2685-close-btn {
	position: absolute;
	top: 15px;
	left: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}

.stw-2685-title {
	font-size: 22px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
	margin-top: 0;
}

.stw-2685-form-group {
	margin-bottom: 20px;
}

.stw-2685-phone-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	box-sizing: border-box;
}

.stw-2685-phone-input:focus {
	outline: none;
	border-color: #2563EB;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

#stw-2685-canvas {
	width: 100%;
	height: 100%;
	transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.stw-2685-wheel-pointer {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 30px;
	color: #ef4444;
	z-index: 10;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stw-2685-btn-primary {
	background-color: #2563EB;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s;
	font-family: inherit;
	margin-bottom: 10px;
}

.stw-2685-btn-primary:hover {
	background-color: #1d4ed8;
}

.stw-2685-btn-primary:disabled {
	background-color: #94a3b8;
	cursor: not-allowed;
}

.stw-2685-btn-secondary {
	background-color: #f1f5f9;
	color: #475569;
	border: 1px solid #cbd5e1;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 15px;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s;
	font-family: inherit;
	margin-bottom: 10px;
}

.stw-2685-btn-secondary:hover {
	background-color: #e2e8f0;
}

.stw-2685-result-area {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.stw-2685-result-text {
	font-size: 18px;
	font-weight: 700;
	color: #10b981;
	margin-bottom: 15px;
}
