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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	background: #0f0f0f;
	color: #e8e8e8;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	opacity: 0;
}

.moon-container {
	margin-bottom: 3rem;
}

.logo {
	width: 80px;
	height: 80px;
}

.content {
	max-width: 600px;
}

.brand-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.brand {
	font-size: 3.5rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #ffffff;
	margin: 0;
}

.tagline {
	font-size: 1.25rem;
	font-weight: 400;
	color: #e8bd97;
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 0.95rem;
	font-weight: 400;
	color: #6b7c85;
	margin-bottom: 3rem;
}

.spacer {
	height: 2rem;
}

.coming-soon {
	font-size: 0.875rem;
	font-weight: 500;
	color: #9aa5ab;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

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

	.moon-icon {
		width: 28px;
		height: 28px;
	}

	.tagline {
		font-size: 1.125rem;
	}

	.logo {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 480px) {
	.brand {
		font-size: 2rem;
	}

	.moon-icon {
		width: 24px;
		height: 24px;
	}

	.brand-container {
		gap: 0.75rem;
	}

	.tagline {
		font-size: 1rem;
	}

	.subtitle {
		font-size: 0.875rem;
	}

	.logo {
		width: 50px;
		height: 50px;
	}

	.moon-container {
		margin-bottom: 2rem;
	}
}