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

body {
	background-color: #1a1a2e;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.logo {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	color: #2ecc71;
}

.tagline {
	font-size: 1.4rem;
	font-weight: 400;
	color: #e0e0f0;
	margin-bottom: 3rem;
	line-height: 1.6;
}
.badge {
	font-size: 0.95rem;
	font-weight: 400;
	color: #8888aa;
	letter-spacing: 0.05em;
	font-style: italic;
}
.footer {
	position: fixed;
	bottom: 2rem;
	font-size: 0.75rem;
	color: #8888aa;
}

.footer a {
	color: #8888aa;
	text-decoration: none;
}

.footer a:hover {
	color: #ffffff;
}
