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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF6347 100%);
	min-height: 100vh;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header {
	text-align: center;
	margin-bottom: 3rem;
}

.app-icon {
	margin-bottom: 1rem;
}

.app-icon-img {
	width: 120px;
	height: 120px;
	border-radius: 25px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: block;
}

.app-name {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	margin-bottom: 0.5rem;
}

.hero {
	text-align: center;
	margin-bottom: 3rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.slogan {
	font-size: 2rem;
	font-weight: 600;
	color: white;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

.cta {
	text-align: center;
	margin-bottom: 3rem;
}

.app-store-button {
	display: inline-block;
	margin-bottom: 1rem;
	transition: transform 0.2s ease;
	border: none;
	outline: none;
	text-decoration: none;
}

.app-store-button:hover {
	transform: scale(1.05);
}

.app-store-button img {
	border-radius: 8px;
	border: none;
	outline: none;
	display: block;
}

.app-info {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
	width: 100%;
}

.feature {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.5rem;
}

.feature p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 500;
}

footer {
	text-align: center;
	margin-top: auto;
	padding-top: 2rem;
}

footer p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.app-name {
		font-size: 2rem;
	}

	.slogan {
		font-size: 1.5rem;
	}

	.hero {
		padding: 1.5rem;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.app-icon-img {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 480px) {
	.app-name {
		font-size: 1.8rem;
	}

	.slogan {
		font-size: 1.3rem;
	}

	.description {
		font-size: 1rem;
	}
}