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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;

	background: radial-gradient(at 0% 100%, rgb(34, 11, 37), rgb(26, 27, 68));
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px 32px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: #9333ea;
	color: white;
}

.btn-primary:hover {
	background-color: #7e22ce;
	transform: translateY(-2px);
}

.btn-full {
	width: 100%;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

.hero-title {
	font-size: 72px;
	font-weight: bold;
	color: white;
	max-width: 1024px;
	margin: 1em auto;
	line-height: 1.1;
}

.gradient-text {
	background: linear-gradient(to right, #00ff9d, #6a80ff, #ff00c8);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-description {
	font-size: 24px;
	color: #a1a1aa;
	max-width: 768px;
	margin: 0 auto 2em;
}

.hero-image {
	max-width: 1024px;
	border-radius: 16px;
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Features Section */
.features {
	margin-top: 3em;
}

.section-header {
	text-align: center;
	margin-top: 3em;
	margin-bottom: 4em;
}

.section-header h2 {
	font-size: 60px;
	font-weight: bold;
	color: white;
	margin-bottom: 24px;
}

.section-header p {
	font-size: 20px;
	color: #a1a1aa;
	max-width: 672px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.feature-card {
	background-color: rgba(24, 24, 27, 0.5);
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}

.feature-card:hover {
	background-color: rgba(24, 24, 27, 0.8);
	transform: translateY(-4px);
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: rgba(168, 85, 247, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #c084fc;
}

.feature-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: white;
	margin-bottom: 12px;
}

.feature-card p {
	color: #a1a1aa;
	line-height: 1.7;
}

/* Download Section */
.download {
	margin-top: 80px;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	max-width: 1024px;
	margin: 0 auto;
}

.platform-card {
	background-color: rgba(24, 24, 27, 0.5);
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-decoration: none;
}

.platform-card:hover {
	background-color: rgba(24, 24, 27, 0.8);
	transform: scale(1.05);
}

.platform-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	border-radius: 16px;
	background-color: rgba(168, 85, 247, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c084fc;
}

.platform-card h3 {
	font-size: 24px;
	font-weight: bold;
	color: white;
}

.version {
	color: #71717a;
	font-size: 14px;
	margin-top: -16px;
}

.platform-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.platform-details p {
	font-size: 14px;
	color: #a1a1aa;
}

.download-info {
	text-align: center;
	margin-top: 64px;
	color: #71717a;
}

/* Responsive Design */
@media (min-width: 640px) {
	.cta-buttons {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 84px;
	}

	.section-header h2 {
		font-size: 72px;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 96px;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

	.section-header h2 {
		font-size: 40px;
	}
}
