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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #43523d 0%, #2d3a29 100%);
	min-height: 100vh;
}

.hero {
	background: linear-gradient(135deg, #43523d 0%, #2d3a29 100%);
	color: #c7f0d8;
	padding: 4rem 2rem;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.app-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: inline-block;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #c7f0d8;
	font-family: monospace;
}

.tagline {
	font-size: 1.25rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	font-family: monospace;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.main-card {
	background: #43523d;
	border: 4px solid #c7f0d8;
	border-radius: 8px;
	margin-top: -2rem;
	overflow: hidden;
	margin-bottom: 3rem;
}

.app-preview {
	background: #43523d;
	padding: 3rem;
	color: #c7f0d8;
	text-align: center;
	position: relative;
}

.preview-image {
	background: #43523d;
	border: 4px solid #c7f0d8;
	border-radius: 4px;
	padding: 2rem;
	max-width: 400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.camera-feed {
	font-size: 6rem;
	margin-bottom: 1rem;
}

.app-details {
	padding: 3rem;
	background: #c7f0d8;
	color: #43523d;
}

.app-details h2 {
	font-size: 2rem;
	color: #2d3a29;
	margin-bottom: 2rem;
	text-align: center;
	font-family: monospace;
}

.template-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.info-box {
	background: #43523d;
	border: 2px solid #2d3a29;
	border-radius: 8px;
	padding: 2rem;
	color: #c7f0d8;
}

.info-box h3 {
	color: #c7f0d8;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.info-box p {
	color: #a8d4b8;
	line-height: 1.6;
}

.how-to-use {
	background: #43523d;
	border: 2px solid #2d3a29;
	border-radius: 8px;
	padding: 2rem;
	margin-top: 2rem;
}

.how-to-use h3 {
	color: #c7f0d8;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	text-align: center;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.step-number {
	background: #c7f0d8;
	color: #43523d;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
	font-family: monospace;
}

.step h4 {
	color: #c7f0d8;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.step p {
	color: #a8d4b8;
	font-family: monospace;
}

.footer {
	text-align: center;
	padding: 2rem;
	color: #c7f0d8;
	opacity: 0.8;
	font-family: monospace;
}

.footer a {
	color: #c7f0d8;
	text-decoration: none;
	font-weight: 600;
}

.footer a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.hero {
		padding: 2rem 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.container {
		padding: 0 1rem;
	}

	.app-details {
		padding: 2rem;
	}
}
