:root {
	--bg: #0b0f14;
	--muted: #9aa6b2;
	--accent: #66d9ff
}

* {
	box-sizing: border-box
}

html, body {
	height: 100%
}

body {
	margin: 0;
	font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
	background: linear-gradient(180deg,#071018 0%, #0b0f14 100%);
	color: #eef6fb;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.card {
	width: 100%;
	max-width: 920px;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 8px 30px rgba(2,6,23,0.6);
	text-align: center;
}

h1 {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 20px
}

p.lead {
	margin: 0 0 20px;
	color: var(--muted)
}

.image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px
}

	.image-wrap a {
		display: block;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 6px 18px rgba(2,6,23,0.6);
	}

img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
	background: #0b0f14;
}

.meta {
	font-size: 13px;
	color: var(--muted)
}

footer {
	margin-top: 18px;
	font-size: 12px;
	color: var(--muted)
}

.download-link {
	color: #00aaff; /* bright cyan-blue for dark background */
	text-decoration: underline;
}

	.download-link:hover {
		color: #33cfff; /* lighter on hover */
	}

.hash-full {
	font-family: monospace;
	word-break: break-all;
	display: inline-block;
	max-width: 64ch;
	margin-top: 1em;
}

.hash-container {
	min-height: 5em;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}