* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #0d0904;
	--accent: #ff8c1a;
	--accent-soft: rgba(255, 140, 26, 0.14);
	--accent-line: rgba(255, 140, 26, 0.38);
}

body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg);
	color: #fff;
}

/* Full-screen hero with background image */
.cs-page {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Overlays — uniform warm darken + a centre vignette so the middle stays readable */
.cs-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cs-overlay-x {
	background: rgba(10, 6, 2, 0.72);
}

.cs-overlay-y {
	background:
		radial-gradient(circle at 50% 42%, transparent 0%, rgba(10, 6, 2, 0.55) 78%),
		linear-gradient(to top, rgba(10, 6, 2, 0.9), transparent 35%);
}

/* Content layer — fully centred */
.cs-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	min-height: 100vh;
	padding: 2.5rem 1.5rem;
	text-align: center;
}

/* Logo — centred at the top */
.cs-logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.cs-logo-mark {
	height: 34px;
	width: auto;
}

.cs-accent {
	color: var(--accent);
}

/* Main content — centred block */
.cs-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 720px;
}

/* Badge pill */
.cs-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: var(--accent-soft);
	border: 1px solid var(--accent-line);
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.4rem 1.1rem;
	border-radius: 999px;
	margin-bottom: 1.75rem;
}

.cs-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
}

/* Eyebrow */
.cs-eyebrow {
	font-size: 0.85rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0.85rem;
}

/* Heading */
.cs-title {
	font-size: clamp(2.75rem, 8vw, 5.5rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

/* Decorative divider under the title */
.cs-rule {
	display: block;
	width: 64px;
	height: 4px;
	border-radius: 4px;
	margin: 1.4rem 0 1.5rem;
	background: linear-gradient(to right, var(--accent), rgba(255, 140, 26, 0.2));
}

/* Lead paragraph */
.cs-lead {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.6;
	max-width: 34rem;
	margin-bottom: 2.5rem;
}

/* Countdown — row of glass cards (no colons) */
.cs-countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

.cs-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	min-width: 92px;
	padding: 1.1rem 1rem 0.9rem;
	background: rgba(20, 12, 4, 0.5);
	border: 1px solid var(--accent-line);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cs-num {
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: #fff;
}

.cs-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--accent);
}

.cs-live {
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
}

/* Footer */
.cs-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.cs-ig {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.cs-ig:hover {
	color: var(--accent);
}

/* Mobile */
@media (max-width: 600px) {
	.cs-content {
		padding: 2rem 1.25rem;
	}

	.cs-countdown {
		gap: 0.6rem;
	}

	.cs-box {
		min-width: 70px;
		padding: 0.85rem 0.65rem 0.7rem;
	}

	.cs-live {
		font-size: 1.35rem;
	}
}
