/**
 * Suggestion styles (loaded separately for gamification).
 *
 * @package UCMP
 */

.ucmp-spin-wheel {
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 9999;
	text-align: center;
}

.ucmp-wheel-trigger {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f59e0b, #ef4444);
	color: #fff;
	border: none;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
	animation: ucmpPulse 2s infinite;
}

@keyframes ucmpPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.ucmp-wheel-popup {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	margin-bottom: 12px;
}

.ucmp-scratch-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ucmp-scratch-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ucmp-scratch-area {
	width: 280px;
	height: 120px;
	margin: 20px auto;
	background: linear-gradient(135deg, #a78bfa, #7c3aed);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

.ucmp-scratch-revealed {
	background: #eef2ff;
	font-size: 28px;
	font-weight: 700;
	color: #6366f1;
}
