:root {
	--brand: #FB6D3A;
	--text: #111111;
	--muted: #555555;
	--bg: #ffffff;
	--card: #ffffff;
	--border: #ececec;
}

@media (prefers-color-scheme: dark) {
	:root {
		--text: #f5f5f5;
		--muted: #b5b5b5;
		--bg: #131313;
		--card: #1c1c1c;
		--border: #2c2c2c;
	}
}

* { box-sizing: border-box; }

body {
	margin: 0;
	padding: 24px 20px;
	background: var(--bg);
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	text-align: center;
}

.wrap { max-width: 420px; margin: 0 auto; }

.logo { width: 132px; max-width: 60%; margin: 8px auto 20px; display: block; }

.card {
	display: none;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
}

#image {
	display: none;
	width: 100%;
	max-width: 280px;
	border-radius: 12px;
	margin: 0 auto 16px;
}

#title {
	display: none;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.3;
}

#description {
	display: none;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.45;
	margin: 0 0 18px;
	/* Review text is free-form and can be long — keep the store button
	   above the fold rather than pushing it off the screen. */
	max-height: 6.5em;
	overflow: hidden;
}

#status {
	display: none;
	color: var(--muted);
	font-size: 14px;
	margin: 0 0 16px;
}

.btn {
	display: none;
	margin: 6px auto;
	padding: 14px 24px;
	max-width: 300px;
	background: var(--brand);
	color: #ffffff;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
}

.btn.secondary {
	background: transparent;
	color: var(--brand);
	border: 1px solid var(--brand);
}
