/* 404页面主要内容 */
.error-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7rem 1rem;
	min-height: 60vh;
}
.error-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.error-code {
	font-size: 8rem;
	font-weight: 800;
	color: var(--theme-color);
	line-height: 1;
	margin-bottom: 1rem;
	text-shadow: 0 4px 20px var(--theme-glow);
}
.error-icon {
	font-size: 5rem;
	color: #cbd5e1;
	margin-bottom: 1rem;
}
.error-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0f172a;
}
.error-message {
	font-size: 1rem;
	color: #64748b;
	margin-bottom: 2rem;
	line-height: 1.6;
}
.home-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--theme-color);
	color: #0f172a;
	padding: 0.9rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 1rem;
	margin-bottom: 2rem;
}
.home-btn:hover {
	background: var(--theme-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px var(--theme-glow);
}
.suggestion-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eef2ff;
}
.suggestion-link {
	color: var(--theme-color);
	text-decoration: none;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.4rem 1rem;
	border-radius: 40px;
	background: #f8fafc;
	transition: all 0.2s;
}
.suggestion-link:hover {
	background: var(--theme-light);
	transform: translateY(-2px);
}