:root {
	--color-primary: #7dd3fc;
	--color-secondary: #cbd5e1;
	--color-background: #000000;
	--color-surface: #0a0a0a;
	--color-surface-muted: rgba(255, 255, 255, 0.03);
	--color-surface-soft: rgba(144, 202, 249, 0.04);
	--color-surface-elevated: #111827;
	--color-text-primary: #f5f5f5;
	--color-text-secondary: #a3a3a3;
	--color-divider: #262626;
	--color-error: #f87171;
	--color-warning: #fbbf24;
	--color-info: #38bdf8;
	--color-success: #4ade80;
	--color-inline-code-bg: rgba(125, 211, 252, 0.08);
	--color-blockquote-bg: rgba(255, 255, 255, 0.03);
	--shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.25);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--container-width: 48rem;
}

html,
body {
	margin: 0;
	height: 100%;
	min-height: 100%;
	background-color: var(--color-background);
	color: var(--color-text-primary);
	font-family: "Roboto", sans-serif;
}

body {
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

code,
pre {
	font-family: "Consolas", "Monaco", "Courier New", monospace;
}

#main-content {
	display: block;
	height: 100%;
	min-height: 100%;
}

.page-container {
	width: min(calc(100% - 2rem), var(--container-width));
	margin-inline: auto;
	padding-inline: 1rem;
}

.page-section {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.flow-sm,
.flow,
.flow-lg,
.flow-xl,
.center-stack {
	display: flex;
	flex-direction: column;
}

.flow-sm {
	gap: 0.5rem;
}

.flow {
	gap: 1rem;
}

.flow-lg {
	gap: 1.5rem;
}

.flow-xl {
	gap: 2rem;
}

.row,
.row-between,
.row-end,
.row-center,
.pill-row,
.result-row,
.article-nav-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.row-between {
	justify-content: space-between;
}

.row-end {
	justify-content: flex-end;
}

.row-center,
.center-stack {
	justify-content: center;
	align-items: center;
}

.wrap,
.pill-row,
.article-nav-row,
.footer-links {
	flex-wrap: wrap;
}

.center-stack {
	gap: 1rem;
	text-align: center;
}

.text-display,
.text-page-title,
.text-section-title,
.text-heading,
.text-subtitle,
.text-body,
.text-caption {
	margin: 0;
}

.text-display {
	font-size: clamp(2.75rem, 8vw, 4.5rem);
	font-weight: 700;
	line-height: 1;
}

.text-page-title {
	font-size: clamp(1.9rem, 3vw, 2.2rem);
	font-weight: 700;
	line-height: 1.15;
}

.text-section-title {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.25;
}

.text-heading {
	font-size: 1.1rem;
	font-weight: 600;
}

.text-subtitle {
	font-size: 1rem;
	font-weight: 500;
}

.text-body {
	font-size: 1rem;
}

.text-caption {
	font-size: 0.82rem;
}

.text-muted {
	color: var(--color-text-secondary);
}

.text-primary {
	color: var(--color-primary);
}

.text-center {
	text-align: center;
}

.text-gradient {
	background: linear-gradient(45deg, #2196f3 30%, #21cbf3 90%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-muted,
.link-plain,
.link-strong {
	text-decoration: none;
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.link-muted {
	color: var(--color-text-secondary);
}

.link-muted:hover,
.link-strong:hover,
.back-link:hover,
.link-plain:hover {
	color: var(--color-primary);
}

.link-plain {
	color: inherit;
}

.link-strong {
	color: var(--color-text-primary);
	font-weight: 600;
}

.back-link {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--color-text-secondary);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.button,
.icon-button,
.pill,
.menu-item-link,
.download-trigger {
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.5rem;
	padding: 0 1rem;
	color: var(--color-text-primary);
}

.button-outline,
.download-trigger {
	border-color: rgba(125, 211, 252, 0.18);
	background: rgba(17, 24, 39, 0.7);
}

.button-outline:hover,
.download-trigger:hover {
	background: rgba(15, 23, 42, 0.96);
}

.button-solid {
	border-color: transparent;
	background: var(--color-primary);
	color: #04111d;
	font-weight: 600;
}

.button-soft {
	background: #ffdd00;
	color: #000;
	font-weight: 600;
}

.button-small {
	min-height: 2rem;
	padding-inline: 0.75rem;
	font-size: 0.9rem;
}

.button-ghost {
	background: transparent;
	border-color: transparent;
}

.icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	background: transparent;
	color: var(--color-text-secondary);
}

.icon-button:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-text-primary);
}

.icon-button:disabled,
.button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.card {
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
}

.card-soft {
	background: var(--color-surface-soft);
}

.card-outline {
	box-shadow: none;
	padding: 1rem;
}

.card-content {
	padding: 1rem;
}

.divider {
	width: 100%;
	height: 1px;
	background: var(--color-divider);
}

.alert {
	padding: 0.9rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
}

.alert-error {
	border-color: rgba(248, 113, 113, 0.35);
	background: color-mix(in srgb, var(--color-error) 10%, transparent);
	color: #fecaca;
}

.alert-warning {
	border-color: rgba(251, 191, 36, 0.35);
	background: color-mix(in srgb, var(--color-warning) 10%, transparent);
	color: #fde68a;
}

.spinner {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	border: 2px solid rgba(125, 211, 252, 0.2);
	border-top-color: var(--color-primary);
	animation: spin 0.9s linear infinite;
}

.spinner-lg {
	width: 2.25rem;
	height: 2.25rem;
	border-width: 3px;
}

.progress-bar {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 3px;
	border-radius: 999px;
	background: rgba(125, 211, 252, 0.14);
}

.progress-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 38%;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
	animation: progress-slide 1.25s ease-in-out infinite;
}

.skeleton {
	border-radius: var(--radius-sm);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
	background-size: 240px 100%;
	animation: shimmer 1.1s linear infinite;
}

.input-shell {
	position: relative;
}

.input-shell .app-icon {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	color: var(--color-text-secondary);
}

.input-native,
.select-native {
	width: 100%;
	min-height: 2.6rem;
	box-sizing: border-box;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-divider);
	background: rgba(17, 24, 39, 0.72);
	color: var(--color-text-primary);
}

.input-native {
	padding: 0 0.9rem 0 2.6rem;
}

.select-native {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0 2.75rem 0 0.9rem;
	border-color: rgba(125, 211, 252, 0.14);
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23a3a3a3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position:
		0 0,
		right 0.9rem center;
	background-size:
		100% 100%,
		1rem 1rem;
	color-scheme: dark;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.select-native option,
.select-native optgroup {
	background: var(--color-surface-elevated);
	color: var(--color-text-primary);
}

.select-native option:checked,
.select-native option:hover,
.select-native option:focus {
	background: rgba(125, 211, 252, 0.12);
	color: #f8fafc;
}

.input-native::placeholder {
	color: var(--color-text-secondary);
}

.input-native:focus,
.select-native:focus,
.download-trigger:focus,
.button:focus,
.icon-button:focus,
.pill:focus {
	outline: 2px solid rgba(125, 211, 252, 0.32);
	outline-offset: 2px;
}

.select-native:hover {
	border-color: rgba(125, 211, 252, 0.22);
	background-color: rgba(15, 23, 42, 0.88);
}

.select-native:focus {
	border-color: rgba(125, 211, 252, 0.28);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 0 0 1px rgba(125, 211, 252, 0.08);
}

.controls-row {
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(9rem, 0.9fr) minmax(10.5rem, 1fr);
	align-items: center;
	gap: 0.75rem;
}

.controls-row .input-shell {
	min-width: 0;
	width: 100%;
}

.controls-row .select-native {
	min-width: 0;
	width: 100%;
}

@media (max-width: 640px) {
	.controls-row {
		grid-template-columns: minmax(0, 1.5fr) minmax(6.75rem, 0.85fr) minmax(7.5rem, 0.95fr);
		gap: 0.5rem;
	}
}

.pill-row {
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2rem;
	padding: 0 0.75rem;
	background: rgba(17, 24, 39, 0.7);
	border-color: rgba(125, 211, 252, 0.18);
	color: #f8fafc;
}

.pill:hover {
	background: rgba(15, 23, 42, 0.96);
}

.pill-active {
	background: rgba(8, 47, 73, 0.94);
}

.tag-list,
.meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.meta-list {
	align-items: center;
}

.list-panel {
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-md);
	overflow: hidden;
	.mb-section {
		margin-bottom: 1.5rem;
	}
}

.list-entry {
	display: block;
	padding: 1rem;
	text-decoration: none;
}

.html-heading {
	color: var(--color-text-primary);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0;
}
.html-heading-h1 {
	font-size: clamp(1.9rem, 3.5vw, 2.35rem);
	margin: 3rem 0 1.25rem;
}
.html-heading-h2 {
	font-size: clamp(1.45rem, 2.5vw, 1.75rem);
	margin: 2.5rem 0 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid rgba(125, 211, 252, 0.14);
}
.html-heading-h3 {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	margin: 2rem 0 0.75rem;
}
.html-heading-h4 {
	font-size: 1.15rem;
	margin: 1.5rem 0 0.75rem;
}
.html-heading-h5 {
	font-size: 1.1rem;
	margin: 1rem 0 0.5rem;
}
.html-heading-h6 {
	font-size: 1.05rem;
	margin: 0.75rem 0 0.5rem;
}
.html-paragraph {
	margin: 0 0 1.1rem;
	color: var(--color-text-secondary);
	line-height: 1.8;
	overflow-wrap: break-word;
}
.html-link {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(125, 211, 252, 0.3);
	text-underline-offset: 0.18em;
	transition:
		color 0.2s ease,
		text-decoration-color 0.2s ease;
}
.html-link:hover {
	color: #b7e7fb;
	text-decoration-color: rgba(183, 231, 251, 0.7);
}
.html-inline-code {
	margin: 0 0.2rem;
	padding: 0.16rem 0.45rem;
	border: 1px solid rgba(125, 211, 252, 0.14);
	border-radius: 999px;
	background: var(--color-inline-code-bg);
	color: #d8f1fd;
	font-size: 0.9em;
}
.html-pre-block {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	overflow-x: auto;
	border: 1px solid rgba(125, 211, 252, 0.14);
	border-radius: var(--radius-md);
	background:
		radial-gradient(circle at top left, rgba(125, 211, 252, 0.08), transparent 40%),
		var(--color-surface-elevated);
	color: #dbe7f3;
	box-shadow: var(--shadow-soft);
}
.html-pre-block pre {
	margin: 0;
}
.html-list {
	margin: 1rem 0 1.25rem;
	padding-left: 2rem;
	color: var(--color-text-secondary);
}
.html-list li::marker {
	color: var(--color-primary);
}
.html-list-item {
	margin-bottom: 0.5rem;
	padding-left: 0.25rem;
}
.html-table-wrapper {
	margin: 1.5rem 0;
	overflow-x: auto;
	border: 1px solid rgba(125, 211, 252, 0.14);
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(125, 211, 252, 0.04), transparent), var(--color-surface);
	box-shadow: var(--shadow-soft);
}
.html-table {
	width: 100%;
	border-collapse: collapse;
}
.html-table thead {
	background: rgba(125, 211, 252, 0.08);
}
.html-table th,
.html-table td {
	padding: 0.8rem 0.9rem;
	border-bottom: 1px solid var(--color-divider);
	text-align: left;
}
.html-table th {
	color: var(--color-text-primary);
	font-weight: 600;
}
.html-table td {
	color: var(--color-text-secondary);
}
.html-table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.02);
}
.html-table tbody tr:hover {
	background: rgba(125, 211, 252, 0.05);
}
.html-blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.1rem 1rem 1.3rem;
	border-left: 4px solid var(--color-primary);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: linear-gradient(135deg, rgba(125, 211, 252, 0.08), transparent 55%), var(--color-blockquote-bg);
	box-shadow: var(--shadow-soft);
}
.html-blockquote-content {
	color: var(--color-text-secondary);
	font-style: italic;
}
.html-details {
	margin: 1.5rem 0;
	border: 1px solid rgba(125, 211, 252, 0.16);
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(125, 211, 252, 0.05), rgba(255, 255, 255, 0.01)), var(--color-surface);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}
.html-summary {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 1.1rem;
	color: var(--color-text-primary);
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}
.html-summary::-webkit-details-marker {
	display: none;
}
.html-summary::before {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border: 1px solid rgba(125, 211, 252, 0.24);
	border-radius: 999px;
	background: rgba(125, 211, 252, 0.08);
	color: var(--color-primary);
	font-size: 1rem;
	font-weight: 700;
	flex: 0 0 auto;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}
.html-details[open] .html-summary {
	background: rgba(125, 211, 252, 0.06);
}
.html-details[open] .html-summary::before {
	content: "−";
	background: var(--color-primary);
	color: #04111d;
	transform: rotate(180deg);
}
.html-summary:hover {
	background: rgba(125, 211, 252, 0.04);
}
.html-summary:focus-visible {
	outline: 2px solid rgba(125, 211, 252, 0.6);
	outline-offset: -2px;
}
.html-details-content {
	padding: 0 1.1rem 1.1rem;
	border-top: 1px solid rgba(125, 211, 252, 0.08);
	color: var(--color-text-secondary);
}
.html-details-content > :first-child {
	margin-top: 1rem;
}
.html-details-content > :last-child {
	margin-bottom: 0;
}
.list-entry + .divider {
	margin: 0;
}

.article-divider {
	margin: 1rem 0;
}
.list-entry:hover {
	background: rgba(255, 255, 255, 0.02);
}

.guide-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--color-text-primary);
	color: var(--color-background);
	font-size: 0.8rem;
	font-weight: 700;
	flex: 0 0 auto;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 1.65rem;
	padding: 0 0.6rem;
	border-radius: 999px;
	border: 1px solid rgba(125, 211, 252, 0.18);
	background: transparent;
	color: var(--color-text-secondary);
	font-size: 0.75rem;
}

.banner-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(144, 202, 249, 0.1);
	border-radius: var(--radius-md);
	background: var(--color-surface-soft);
}

.hover-card {
	border: 1px solid transparent;
	transition:
		background-color 0.2s ease-in-out,
		border-color 0.2s ease-in-out;
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

.hover-card:hover {
	background-color: rgba(125, 211, 252, 0.08);
	border-color: rgba(125, 211, 252, 0.18);
}

.app-icon {
	width: 1.1rem;
	height: 1.1rem;
	flex: 0 0 auto;
}

.icon-lg {
	width: 1.4rem;
	height: 1.4rem;
}

.status-icon {
	width: 3rem;
	height: 3rem;
}

.status-page,
.redirect-page {
	min-height: 80vh;
	padding: 1rem;
}

.redirect-page {
	box-sizing: border-box;
	min-height: 100vh;
}

.status-copy {
	max-width: 34rem;
}

.route-loading-shell {
	min-height: 70vh;
}

.route-loading-state {
	min-height: 70vh;
}

.code-component-container {
	position: relative;
	margin: 1.5rem 0;
	overflow: hidden;
	border: 1px solid rgba(125, 211, 252, 0.12);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: var(--shadow-soft);
}

.code-component-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.6rem;
	padding: 0.45rem 0.65rem 0.45rem 0.8rem;
	background: linear-gradient(180deg, rgba(125, 211, 252, 0.06), rgba(125, 211, 252, 0.015));
	border-bottom: 1px solid rgba(125, 211, 252, 0.08);
}

.code-component-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.code-component-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

.code-component-language {
	color: var(--color-secondary);
	font-size: 0.74rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.code-copy-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 2rem;
	padding: 0.35rem 0.55rem;
	border-color: rgba(125, 211, 252, 0.1);
	background: rgba(255, 255, 255, 0.015);
	color: var(--color-text-secondary);
}

.code-copy-button:hover {
	border-color: rgba(125, 211, 252, 0.28);
	background: rgba(125, 211, 252, 0.07);
	color: var(--color-text-primary);
}

.code-component-pre {
	margin: 0;
	padding: 0.9rem 1rem 1rem;
	max-height: 60vh;
	overflow: auto;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(17, 24, 39, 0.2));
}

.code-component-pre::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.code-component-pre::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 999px;
}

.code-component-pre::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(125, 211, 252, 0.3), rgba(125, 211, 252, 0.2));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 999px;
}

.code-component-pre::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, rgba(125, 211, 252, 0.42), rgba(125, 211, 252, 0.28));
}

.code-component-pre::-webkit-scrollbar-corner {
	background: rgba(255, 255, 255, 0.04);
}

.code-component-pre code {
	display: block;
	min-width: max-content;
	font-size: 0.95rem;
	line-height: 1.75;
	color: #dbe7f3;
}

.article-nav-row {
	margin-top: 1rem;
	align-items: stretch;
}

.article-nav-card {
	flex: 1 1 200px;
	min-width: 200px;
	padding: 0.75rem;
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-md);
	background: transparent;
}

.article-nav-card.article-nav-next {
	text-align: right;
}

.article-nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: inherit;
	text-decoration: none;
}

.article-nav-next .article-nav-link {
	justify-content: flex-end;
}

.support-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1rem;
}

.support-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 999px;
	flex: 0 0 auto;
}

.support-avatar-coffee {
	background: #ffdd00;
	color: #000;
}

.support-avatar-heart {
	background: pink;
	color: var(--color-error);
}

.download-menu {
	position: relative;
	display: inline-flex;
	justify-content: flex-end;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.download-menu-panel {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	min-width: 240px;
	z-index: 20;
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.download-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.5rem;
	padding: 0 1rem;
	color: var(--color-text-primary);
}

.menu-item-link {
	display: flex;
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 0;
	color: var(--color-text-primary);
	background: transparent;
}

.menu-item-link:hover {
	background: rgba(255, 255, 255, 0.04);
}

.readme-article,
.article-content {
	margin-top: 1rem;
}

.result-row {
	margin-bottom: 0.5rem;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes progress-slide {
	0% {
		transform: translateX(-120%);
	}

	100% {
		transform: translateX(340%);
	}
}

@keyframes shimmer {
	from {
		background-position: -240px 0;
	}

	to {
		background-position: 240px 0;
	}
}

@media (max-width: 640px) {
	.page-container {
		width: min(calc(100% - 1rem), var(--container-width));
		padding-inline: 0.5rem;
	}

	.row-between {
		align-items: flex-start;
		flex-direction: column;
	}

	.banner-card,
	.support-card {
		width: 100%;
		align-items: flex-start;
	}

	.download-menu {
		display: flex;
		width: 100%;
	}

	.download-trigger,
	.download-menu-panel {
		width: 100%;
	}
}
