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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #00c851 0%, #42D8B9 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	padding: 20px 0;
	text-align: center;
}

.logo {
	font-size: 2.5rem;
	font-weight: bold;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	animation: fadeInDown 1s ease-out;
}

.hero {
	text-align: center;
	padding: 80px 0;
	position: relative;
}

.hero-title {
	font-size: 3.5rem;
	color: white;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease-out 0.3s both;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	animation: fadeInUp 1s ease-out 0.6s both;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 60px 0;
	animation: fadeInUp 1s ease-out 0.9s both;
}

.feature-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: translateY(20px);
	animation: slideInUp 0.8s ease-out forwards;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:nth-child(1) {
	animation-delay: 1.2s;
}

.feature-card:nth-child(2) {
	animation-delay: 1.4s;
}

.feature-card:nth-child(3) {
	animation-delay: 1.6s;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #00c851, #007e33);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	color: white;
}

.feature-title {
	font-size: 1.4rem;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}

.feature-description {
	color: #666;
	text-align: center;
	line-height: 1.6;
}

.download-section {
	text-align: center;
	padding: 60px 0;
	animation: fadeIn 1s ease-out 1.8s both;
}

.download-btn {
	display: inline-block;
	padding: 20px 40px;
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
	color: #00c851;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 3px solid white;
}

.download-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.download-btn:active {
	transform: translateY(-3px) scale(1.02);
}

.download-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(0, 200, 81, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.5s;
	opacity: 0;
}

.download-btn:hover::before {
	animation: shimmer 0.8s ease-in-out;
}

.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape:nth-child(2) {
	width: 120px;
	height: 120px;
	top: 60%;
	right: 10%;
	animation-delay: 2s;
}

.shape:nth-child(3) {
	width: 60px;
	height: 60px;
	top: 80%;
	left: 20%;
	animation-delay: 4s;
}

.stats {
	display: flex;
	justify-content: space-around;
	margin: 40px 0;
	animation: fadeInUp 1s ease-out 2s both;
}

.stat {
	text-align: center;
	color: white;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	display: block;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-top: 5px;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

@keyframes shimmer {
	0% {
		left: -100%;
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

.pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		padding: 0 20px;
	}

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

	.stats {
		flex-direction: column;
		gap: 20px;
	}

	.download-btn {
		padding: 15px 30px;
		font-size: 1.1rem;
	}
}