* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #fafafa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", sans-serif;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	color: #333;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header Styles */
header {
	position: relative;
	height: 270px;
	background: linear-gradient(90deg, #9cf 0%, #f9c 25%, #ec8 50%, #7eb 75%, #9cf 100%);
	background-size: 400% 100%;
	animation: gradient-anim 30s linear infinite;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@keyframes gradient-anim {
	to { background-position: 400% 0; }
}

.header-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	padding: 0 20px;
}

h1 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	margin-bottom: 10px;
}

header img{
	width: 80px;
	height: 80px;
	margin-bottom: 15px;
}
header p{
	width: 86%;
	margin: 0 auto;
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
}
/* Main Content */

.app-grid{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: 1360px;
	width: 98%;
	margin: 70px auto 70px;
	padding: 0;
}

.app-card {
	width: calc(25% - 40px);
	margin: 20px;
	text-align: center;
	transition: transform 0.2s;
}

.app-card:hover {
	transform: translateY(-5px);
}

.app-icon-container {
	padding: 20px;
}

.app-icon-img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 20%;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease-out;
}

.app-card:hover .app-icon-img {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.app-name {
	font-size: 25px;
	font-weight: 700;
	margin: 10px 0 5px;
}

.app-description {
	height: 78px;
	line-height: 26px;
	font-size: 16px;
	color: #777;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:3;
	overflow: hidden;
}
.app-cms{
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 50px 10px;
	background: #f1f2f3;
}
.app-cms a{
	background: #ffff;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid #e1e2e3;
	margin: 10px 14px;
}
/* Footer */
footer {
	box-sizing: border-box;
	width: 100%;
	background-color: #333;
	color: #ccc;
	padding: 30px 10px;
	text-align: center;
}

.footer-content {
	max-width: 1080px;
	margin: 0 auto;
}
.footer-links {
	margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	header {
		height: 250px;
	}
	
	.app-grid {
		margin: 50px auto 50px;
	}
	
	.app-card {
		width: calc(33.33% - 40px);
	}
	
	h1 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	header {
		height: 170px;
	}
	
	header p{
		display: none;
	}
	
	.app-grid {
		margin: 30px auto 30px;
	}
	
	.app-card {
		width: calc(50% - 20px);
		margin: 10px;
	}
	
	
	h1 {
		font-size: 20px;
	}
	
	.app-name {
		font-size: 20px;
	}
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
	
}