:root {
	--text: #f7fbff;
	--muted: rgba(247, 251, 255, 0.78);
	--accent: #8df5c8;
	--accent-2: #4ed8ff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Space Grotesk", "Avenir Next", sans-serif;
	background: transparent;
	color: var(--text);
}

.widget {
	width: min(860px, 100vw);
	padding: 18px 22px;
	border-radius: 26px;
	background: linear-gradient(135deg, rgba(6, 12, 20, 0.84), rgba(12, 22, 35, 0.74));
	border: 1px solid rgba(141, 245, 200, 0.14);
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.hidden {
	opacity: 0;
}

.status-row,
.time-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: var(--muted);
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

h1 {
	margin: 10px 0 6px;
	font-size: clamp(1.4rem, 3.4vw, 2.5rem);
	line-height: 1;
}

p {
	margin: 0 0 14px;
	color: var(--muted);
}

.progress-track {
	height: 12px;
	padding: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
	height: 100%;
	width: 0%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	transition: width 0.3s ease;
}
