/* ============================================
   Night Knight Styles
   ============================================ */

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	font-family:
		ui-rounded,
		"SF Pro Rounded",
		-apple-system,
		BlinkMacSystemFont,
		Segoe UI,
		Helvetica,
		Arial,
		sans-serif,
		Apple Color Emoji,
		Segoe UI Emoji;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	background: linear-gradient(#0a0a12, #161620);
	min-height: 100vh;
}

h1, h2, h3, p {
	margin: 0;
}

h1 {
	font-size: 72px;
	font-weight: 900;
	z-index: 2;
	filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.9));
}

p {
	font-size: 20px;
	font-weight: 400;
	opacity: 0.7;
	max-width: 360px;
	text-align: center;
	line-height: 1.4;
}

a {
	color: inherit;
	text-decoration: none;
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 500px;
	padding: 24px;
	overflow: visible;

	.appIcon {
		width: 200px;
		padding: 60px;
		margin: -60px;
		box-sizing: content-box;
		transform: translateY(40px);
		z-index: 1;
		filter:
			drop-shadow(0px 0px 60px rgba(255, 200, 100, 0.5))
			drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.8));
	}
}

.coming-soon {
	margin-top: 48px;
	padding: 12px 24px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	opacity: 0.6;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	opacity: 0.4;
	padding: 24px;
}

@media (max-width: 480px) {
	h1 {
		font-size: 48px;
	}

	p {
		font-size: 18px;
	}

	.hero .appIcon {
		max-width: 160px;
		transform: translateY(32px);
	}
}
