:root {
	--bg: #0e0e10;
	--surface: #18181b;
	--surface-light: #232328;

	--primary: #9146ff;
	--primary-hover: #a970ff;

	--text: #ffffff;
	--text-muted: #adadb8;

	--border: #2f2f35;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: Inter, Segoe UI, sans-serif;
	min-height: 100vh;
	padding: 2rem;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

.timer-card {
	background: linear-gradient(
			135deg,
			rgba(145,70,255,.2),
			rgba(145,70,255,.05)
	);

	border: 1px solid rgba(145,70,255,.3);

	border-radius: 24px;

	padding: 2rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.timer-label {
	color: var(--text-muted);
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.timer {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-top: .5rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;

	margin-bottom: 1.5rem;
}

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 2rem;
}

.stat-label {
	color: var(--text-muted);
	margin-bottom: .5rem;
	font-size: .9rem;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 700;
}

.stream-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.stream-header {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border);
	font-weight: 600;
}

.stream-wrapper {
	aspect-ratio: 16 / 9;
}

.stream-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.info-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 2rem;
	margin-bottom: 1.5rem;
}

.info-card h2 {
	margin-bottom: 1rem;
}

.info-card p {
	color: var(--text-muted);
	line-height: 1.8;
}

.progress-section {
	margin-top: 1.5rem;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: .5rem;
}

.progress-bar {
	height: 16px;
	background: #101014;
	border-radius: 999px;
	overflow: hidden;
}

.progress-fill {
	width: 0%;
	height: 100%;
	background: linear-gradient(
			90deg,
			var(--primary),
			var(--primary-hover)
	);
}

@media (max-width: 768px) {
	body {
			padding: 1rem;
	}

	.timer-card,
	.info-card {
			padding: 1.5rem;
	}
}