* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Georgia, "Times New Roman", serif;
	background: #090705;
	color: #f4e6c5;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.hero {
	min-height: 100vh;
	background:
		linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
		radial-gradient(circle at center, #3b2414 0%, #090705 65%);
	display: flex;
	align-items: stretch;
}

.hero-overlay {
	width: 100%;
	padding: 24px;
}

.navbar {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #f6d98f;
}

.nav-links {
	display: flex;
	gap: 24px;
	font-size: 16px;
}

.nav-links a {
	color: #dbc99f;
}

.nav-links a:hover {
	color: #ffffff;
}

.hero-content {
	max-width: 900px;
	margin: 150px auto 0;
	text-align: center;
}

.tagline {
	color: #c99a47;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 15px;
	margin-bottom: 12px;
}

h1 {
	font-size: 76px;
	color: #f5d27a;
	text-shadow: 0 0 18px rgba(245, 190, 80, 0.35);
	margin-bottom: 20px;
}

.description {
	max-width: 720px;
	margin: 0 auto;
	font-size: 22px;
	color: #ead9b3;
}

.hero-buttons {
	margin-top: 38px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.primary-button,
.secondary-button {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 18px;
	transition: transform 0.15s ease, background 0.15s ease;
}

.primary-button {
	background: #b9862f;
	color: #120c05;
	font-weight: bold;
	box-shadow: 0 0 18px rgba(185, 134, 47, 0.35);
}

.primary-button:hover {
	background: #e0ad52;
	transform: translateY(-2px);
}

.secondary-button {
	border: 1px solid #b9862f;
	color: #f0d49b;
}

.secondary-button:hover {
	background: rgba(185, 134, 47, 0.15);
	transform: translateY(-2px);
}

.alpha-note {
	margin-top: 24px;
	color: #aa9271;
	font-size: 15px;
}

.section {
	max-width: 1180px;
	margin: 0 auto;
	padding: 90px 24px;
	text-align: center;
}

.section h2 {
	font-size: 44px;
	color: #f5d27a;
	margin-bottom: 18px;
}

.section > p {
	max-width: 780px;
	margin: 0 auto 34px;
	font-size: 19px;
	color: #d8c49c;
}

.dark-section {
	max-width: none;
	background: #120d09;
	padding-left: 24px;
	padding-right: 24px;
}

.download-card {
	max-width: 440px;
	margin: 0 auto;
	padding: 34px;
	border: 1px solid rgba(185, 134, 47, 0.45);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 14px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

.download-card h3 {
	font-size: 28px;
	color: #f0d49b;
	margin-bottom: 10px;
}

.download-card p {
	margin-bottom: 24px;
	color: #cdb98f;
}

.screenshots-grid,
.status-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.screenshot-placeholder {
	min-height: 210px;
	border: 1px solid rgba(185, 134, 47, 0.35);
	background:
		linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)),
		#23170e;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #bfa173;
	font-size: 20px;
}

.status-card {
	padding: 28px;
	border: 1px solid rgba(185, 134, 47, 0.35);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 12px;
}

.status-card h3 {
	color: #f0d49b;
	font-size: 24px;
	margin-bottom: 10px;
}

.status-card p {
	color: #cdb98f;
}

footer {
	padding: 34px 20px;
	text-align: center;
	background: #050403;
	color: #917d5d;
	font-size: 14px;
}

@media (max-width: 850px) {
	.navbar {
		flex-direction: column;
		gap: 16px;
	}

	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	h1 {
		font-size: 48px;
	}

	.description {
		font-size: 18px;
	}

	.screenshots-grid,
	.status-grid {
		grid-template-columns: 1fr;
	}
}