/* MemOrLearn Launch Countdown – memorlearn-countdown.css */

.mlcd-wrapper {
	text-align: center;
	padding: 2rem 1rem;
	box-sizing: border-box;
	width: 100%;
}

.mlcd-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #085041;
	margin-bottom: 1.25rem;
	letter-spacing: 0.02em;
}

/* Timer row */
.mlcd-timer {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
}

/* Individual block */
.mlcd-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #0F6E56;
	border-radius: 16px;
	width: 100px;
	height: 100px;
	padding: 0.75rem 0.5rem;
	box-sizing: border-box;
	flex-shrink: 0;
}

/* The big number */
.mlcd-number {
	display: block;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}

/* Days / Hours / Minutes / Seconds label */
.mlcd-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	color: #5DCAA5;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 4px;
}

/* Colon separator */
.mlcd-separator {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0F6E56;
	line-height: 1;
	margin-bottom: 1.25rem;
	user-select: none;
	flex-shrink: 0;
}

/* Expired message */
.mlcd-expired {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0F6E56;
	margin-top: 1rem;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 600px) {

	.mlcd-timer {
		gap: 4px;
	}

	.mlcd-block {
		width: 60px;
		height: 60px;
		border-radius: 10px;
		padding: 0.4rem 0.25rem;
		flex-shrink: 1;
	}

	.mlcd-number {
		font-size: 1.6rem;
	}

	.mlcd-label {
		font-size: 0.55rem;
		letter-spacing: 0.04em;
	}

	.mlcd-separator {
		font-size: 1.4rem;
		margin-bottom: 0.9rem;
	}

}

/* ── Expired state ────────────────────────────────────── */
.mlcd-expired {
	padding: 2rem 1rem;
}

.mlcd-expired-emoji {
	font-size: 2.5rem;
	margin: 0 0 0.5rem;
	line-height: 1;
}

.mlcd-expired-heading {
	font-size: 1.8rem;
	font-weight: 700;
	color: #085041;
	margin: 0 0 0.75rem;
}

.mlcd-expired-sub {
	font-size: 1rem;
	color: #444;
	max-width: 420px;
	margin: 0 auto 1rem;
	line-height: 1.6;
}

.mlcd-expired-code {
	font-size: 0.95rem;
	color: #444;
	margin: 0 0 1.5rem;
}

.mlcd-expired-code span {
	display: inline-block;
	background-color: #E1F5EE;
	color: #085041;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	padding: 4px 14px;
	border-radius: 8px;
	border: 1.5px dashed #0F6E56;
}

.mlcd-expired-btn {
	display: inline-block;
	background-color: #0F6E56;
	color: #ffffff !important;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.75rem 2rem;
	border-radius: 10px;
	transition: background-color 0.2s ease;
}

.mlcd-expired-btn:hover {
	background-color: #085041;
	color: #ffffff !important;
}
