* {
	box-sizing: border-box;
}

html {
	background: radial-gradient(circle at bottom right, #1d241b 0%, #111111 50%);
}

body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #e6e6e6;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	padding-bottom: 32px;
}

.page {
	display: flex;
	gap: 16px;
	max-width: 1100px;
	width: 100%;
	flex-wrap: wrap;
	padding: 16px;
}

h1,
h2,
h3,
p,
a {
	margin: 0;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.1;
}

h2 {
	font-size: 1.5rem;
	line-height: 1.2;
}

h3 {
	font-size: 1.1rem;
	line-height: 1.3;
}

p {
	line-height: 1.5;
}

a {
	color: #6aa6ff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

a:hover {
	text-decoration-thickness: 2px;
}

a:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
	border-radius: 4px;
}

.container {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 12px;
	max-width: 1000px;
	width: 100%;
}

.container.info {
	gap: 24px;
}

.container.info .desc {
	font-size: 1.4rem;
	max-width: 70%;
}

.faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq .q {
	margin-top: 12px;
}

.faq .q::before {
	content: "❯ ";
}

.container.download,
.container.links {
	background: #191c20;
	gap: 0;
}

.container:not(.info) h2 {
	margin-bottom: 12px;
}

.container .url {
	color: #888888;
	font-size: 0.7rem;
}

.screenshot {
	width: 100%;
	max-width: 502px;
	height: auto;
	border-radius: 8px;
}

hr {
	border: none;
	border-top: 1px solid #333333;
	margin: 24px 0;
}

h3.mirrors {
	margin-top: 24px;
}

.announce-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	background: linear-gradient(90deg, #5c1f1f 0%, #7a2727 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
}

.announce-bar p {
	margin: 0;
	padding: 12px 16px;
	font-size: 0.95rem;
	line-height: 1.4;
	text-align: center;
	color: #ffffff;
	font-weight: 500;
}

.announce-bar a {
	color: #ffffff;
	font-weight: 700;
	text-decoration-thickness: 2px;
}

.announce-bar a:hover {
	opacity: 0.9;
}

body {
	padding-top: 52px;
}

@media (max-width: 768px) {
	.page {
		flex-direction: column;
		align-items: center;
	}

	.container {
		padding: 16px;
	}

	.container.info .desc {
		max-width: 100%;
		font-size: 1.2rem;
	}
}