:root {
	--bg: #0b0b0f;
	--fg: #e8e8ee;
	--muted: #8a8a96;
	--accent: #ffffff;
	--rule: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid var(--rule);
	transition: border-color 160ms ease;
}
a:hover { border-color: var(--accent); }

.wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 96px 24px 48px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.hero { margin-bottom: 96px; }

.logo {
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 200;
	letter-spacing: 0.02em;
	margin: 0 0 8px;
}

.tagline {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.section-title {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--muted);
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--rule);
}

.games { margin-bottom: auto; }

.coming-soon {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	padding: 16px 0;
}
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 16px 0;
}

.game-icon {
	width: 96px;
	height: 96px;
	border-radius: 18px;
	object-fit: cover;
	flex-shrink: 0;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.game-info { min-width: 0; }

.game-title {
	margin: 0 0 4px;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.game-status {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.store-links {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.contact {
	margin-top: 96px;
	padding-top: 24px;
	border-top: 1px solid var(--rule);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.9rem;
}

.copy {
	margin: 0;
	color: var(--muted);
}

@media (max-width: 480px) {
	.wrap { padding: 64px 20px 32px; }
	.hero { margin-bottom: 64px; }
	.contact { margin-top: 64px; }
	.game-icon { width: 72px; height: 72px; border-radius: 14px; }
}
