/* 全局样式 */
body,
html {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 中间内容区 */
.home {
	text-align: center;
	/*padding: 200px;*/
	/*max-width: 800px;*/
	/*margin: 0 auto;*/
	margin-top: -100px;
}

.hero img {
	max-width: 150px;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #2c3e50;
}

.description {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 30px;
}

.action-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	font-size: 1rem;
	color: #fff;
	background: linear-gradient(135deg, #42a5f5, #1e88e5);
	border-radius: 25px;
	border: none;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.action-button i {
	margin-right: 8px;
	font-size: 1.2rem;
}

.official-link {
	margin-top: 20px;
}

.official-link a {
	display: inline-flex;
	align-items: center;
	color: #42a5f5;
	text-decoration: none;
	font-size: 1rem;
}

.official-link a:hover {
	text-decoration: underline;
}

.official-link i {
	margin-right: 8px;
	font-size: 1rem;
}

#unsupported-message {
	color: #ff4444;
	margin-top: 20px;
	font-size: 0.9rem;
}

#unsupported-message a {
	color: #42a5f5;
	text-decoration: none;
}

#unsupported-message a:hover {
	text-decoration: underline;
}

/* 底部页脚 */
footer {
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer a {
	color: #42a5f5;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.footer p {
	margin: 5px 0;
	font-size: 0.9rem;
	color: #666;
}

/* 响应式设计 */
@media (max-width: 600px) {
	.hero h1 {
		font-size: 2rem;
	}

	.description {
		font-size: 1rem;
	}

	.action-button {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}