:root {
	color-scheme: dark;
	--bg-overlay: rgba(6, 14, 28, 0.7);
	--bg-overlay-soft: rgba(6, 14, 28, 0.45);
	--card: rgba(14, 30, 54, 0.58);
	--line: rgba(255, 255, 255, 0.18);
	--text: #f5f8ff;
	--muted: #c6d4ef;
	--accent: #2fd1b4;
	--accent-hover: #25b59b;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
	color: var(--text);
	background:
		linear-gradient(var(--bg-overlay), var(--bg-overlay-soft)),
		url("assets/webbg.png") center/cover no-repeat,
		radial-gradient(circle at top right, #11396a, #040b16 62%);
	display: grid;
	place-items: center;
	padding: 24px;
}

.wrapper {
	width: min(960px, 100%);
	border: 1px solid var(--line);
	background: linear-gradient(160deg, var(--card), rgba(9, 20, 38, 0.7));
	backdrop-filter: blur(4px);
	border-radius: 16px;
	padding: clamp(24px, 5vw, 48px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.08);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.86rem;
	color: var(--muted);
	margin-bottom: 16px;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.1rem);
	line-height: 1.1;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

p {
	color: var(--muted);
	max-width: 62ch;
	line-height: 1.65;
	font-size: 1rem;
}

.status {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 0.98rem;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 8px rgba(47, 209, 180, 0.2);
}

.actions {
	margin-top: 26px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	appearance: none;
	border: 0;
	border-radius: 10px;
	padding: 12px 18px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: 0.18s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	background: var(--accent);
	color: #04201b;
}

.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-1px);
}

.btn-secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}

.footer-note {
	margin-top: 20px;
	font-size: 0.86rem;
	opacity: 0.82;
}

@media (max-width: 680px) {
	body {
		padding: 16px;
	}

	.wrapper {
		border-radius: 12px;
	}
}
