:root {
	--bg: #0e1116;
	--fg: #e6edf3;
	--muted: #8b949e;
	--accent: #58a6ff;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.logo {
	width: 120px;
	height: 120px;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	margin: 0 0 0.5rem 0;
	letter-spacing: -0.02em;
}

.tagline {
	color: var(--muted);
	font-size: 1.1rem;
	margin: 0;
}

footer {
	text-align: center;
	padding: 1rem;
	color: var(--muted);
	font-size: 0.9rem;
}

footer a, main.imprint a {
	color: var(--accent);
	text-decoration: none;
}

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

main.imprint {
	max-width: 640px;
	margin: 0 auto;
	padding: 3rem 2rem;
	text-align: left;
	display: block;
}

main.imprint h1 { font-size: 2rem; }
main.imprint h2 { font-size: 1.25rem; margin-top: 2rem; }

main.parked {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

main.parked .parked-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1rem;
}

main.parked h1 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

main.parked .parked-hint {
    max-width: 520px;
    color: var(--muted);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

main.parked code {
    background: rgba(88, 166, 255, 0.1);
    padding: 0.1em 0.35em;
    border-radius: 3px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--accent);
}
