/* @format */

:root {
	--primary-color: #34D399;
	--secondary-color: #0ea5e9; /* Neon Cyan */
	--dark-bg: #000000;
	--text-color: #e2e8f0;
	--card-bg: #111111;
	--border-color: #222222;
	--glow-color: rgba(52, 211, 153, 0.5);
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--dark-bg);
	background-image: url('./assets/background.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-blend-mode: overlay;
	color: var(--text-color);
	line-height: 1.6;
}

a {
	color: var(--primary-color);
	text-decoration: none;
}

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

/* Navbar */
.navbar {
	background-color: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid var(--border-color);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
}

.logo img {
	height: 40px;
}

.nav-links a {
	color: var(--text-color);
	margin: 0 1rem;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #000;
	font-weight: 700;
	box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

.btn-primary:hover {
	background-color: #059669;
}

.btn-large {
	font-size: 1.1rem;
	padding: 1rem 2rem;
}

.hamburger {
	display: none;
	cursor: pointer;
}

/* Hero Section */
.hero-section {
	padding: 6rem 0;
}

.hero-section .container {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.hero-content {
	flex: 1;
}

.hero-content h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #94a3b8;
}

.hero-image {
	flex: 1;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Features Section */
.features-section {
	padding: 4rem 0;
	background-color: rgba(17, 17, 17, 0.8);
	backdrop-filter: blur(5px);
}

.features-section .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature {
	text-align: center;
}

.feature i {
	color: var(--primary-color);
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

/* Screenshots Section */
.screenshots-section {
	padding: 4rem 0;
}

.screenshots-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.screenshot-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.screenshot-gallery img {
	width: 100%;
	border-radius: 10px;
	border: 2px solid var(--border-color);
}

/* How It Works Section */
.how-it-works-section {
	padding: 4rem 0;
	background-color: rgba(17, 17, 17, 0.8);
	backdrop-filter: blur(5px);
}

.how-it-works-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.steps {
	display: flex;
	justify-content: space-around;
	gap: 2rem;
}

.step {
	text-align: center;
	max-width: 300px;
}

.step-number {
	width: 50px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.step h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
	padding: 4rem 0;
	text-align: center;
	background-color: var(--primary-color);
	box-shadow: 0 0 20px var(--glow-color);
}

.cta-section h2 {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: 2rem;
}

.cta-section .btn {
	background-color: #fff;
	color: var(--primary-color);
}

.cta-section .btn:hover {
	background-color: #e2e8f0;
}

/* Footer */
footer {
	padding: 2rem 0;
	border-top: 1px solid var(--border-color);
}

footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social-links a {
	margin-left: 1rem;
}

.social-links i {
	width: 24px;
	height: 24px;
	color: var(--text-color);
	transition: color 0.3s ease;
}

.social-links a:hover i {
	color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: var(--dark-bg);
		padding: 1rem 0;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links a {
		margin: 1rem 0;
		text-align: center;
	}

	.hamburger {
		display: block;
	}

	.hero-section .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

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

	.steps {
		flex-direction: column;
		align-items: center;
	}

	footer .container {
		flex-direction: column;
		gap: 1rem;
	}
}
