/* 现代化人生倒计时组件样式 */
* {
	padding: 0;
	margin: 0;
}

.m-3 h3 {
	text-align: center;
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.reviews-container {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.95) 100%);
	border: 2px solid rgba(102, 126, 234, 0.15);
	border-radius: var(--radius-2xl);
	padding: 28px;
	width: 340px;
	min-height: 380px;
	margin: 0 auto;
	box-shadow: var(--shadow-2xl);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	transition: all var(--transition-base);
}

.reviews-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
	animation: pulse 6s ease-in-out infinite;
}

.reviews-container:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
	border-color: rgba(102, 126, 234, 0.3);
}

.reviews-container h3 {
	position: relative;
	z-index: 1;
}

.reviews-container h3::before {
	content: '⏳';
	font-size: 28px;
	filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
	animation: float 3s ease-in-out infinite;
}

.review {
	color: var(--gray-700);
	padding: 18px 20px;
	margin-bottom: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%);
	border-radius: var(--radius-xl);
	font-size: 14px;
	line-height: 1.7;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(102, 126, 234, 0.1);
	position: relative;
	overflow: hidden;
}

.review::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.review:hover::before {
	opacity: 1;
}

.review:last-child {
	margin-bottom: 0;
}

.review:hover {
	transform: translateX(8px) translateY(-2px);
	box-shadow: var(--shadow-xl);
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-color: rgba(102, 126, 234, 0.2);
}

.review .icon-container {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--gray-800);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.review .icon-container::before {
	content: '📊';
	font-size: 16px;
}

.progress {
	background: linear-gradient(to right, rgba(226, 232, 240, 0.8) 0%, rgba(203, 213, 224, 0.8) 100%);
	border-radius: var(--radius-full);
	position: relative;
	height: 14px;
	width: 100%;
	margin-top: 12px;
	overflow: hidden;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(102, 126, 234, 0.1);
}

.progress-done {
	border-radius: var(--radius-full);
	height: 100%;
	transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
	animation: shimmer 3s linear infinite;
	background-image: linear-gradient(45deg,
			rgba(255, 255, 255, 0.25) 25%,
			transparent 25%,
			transparent 50%,
			rgba(255, 255, 255, 0.25) 50%,
			rgba(255, 255, 255, 0.25) 75%,
			transparent 75%,
			transparent);
	background-size: 40px 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@keyframes shimmer {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 40px 0;
	}
}

.percent {
	color: var(--gray-600);
	float: right;
	margin-top: -28px;
	font-weight: 700;
	font-size: 13px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
	padding: 4px 12px;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(102, 126, 234, 0.15);
	position: relative;
	z-index: 1;
	transition: all var(--transition-base);
}

.review:hover .percent {
	background: var(--primary-gradient);
	color: white;
	transform: scale(1.1);
	box-shadow: var(--shadow-lg);
}

/* 响应式优化 */
@media (max-width: 768px) {
	.reviews-container {
		width: 100%;
		padding: 20px;
		min-height: auto;
	}
}