.cfd-countdown {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.75rem 0;
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cfd-countdown-cell {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	padding: 1.1rem 1.4rem 0.9rem;
	background: linear-gradient(180deg, #1a205a 0%, #121741 100%);
	border-radius: 10px;
	box-shadow:
		0 8px 22px rgba(18, 23, 65, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: transform 0.25s ease-out;
}

.cfd-countdown-cell::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #ee2983;
	box-shadow: 0 0 14px rgba(238, 41, 131, 0.6);
}

.cfd-countdown-cell:hover {
	transform: translateY(-2px);
}

.cfd-countdown-num {
	display: inline-block;
	color: #fff;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.cfd-countdown-num.is-ticking {
	animation: cfd-countdown-tick 0.45s ease-out;
}

@keyframes cfd-countdown-tick {
	0% {
		transform: scale(1);
		color: #ee2983;
		text-shadow: 0 0 14px rgba(238, 41, 131, 0.7);
	}
	55% {
		transform: scale(1.18);
		color: #ee2983;
	}
	100% {
		transform: scale(1);
		color: #fff;
		text-shadow: none;
	}
}

.cfd-countdown-label {
	margin-top: 0.55rem;
	color: #ee2983;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	line-height: 1;
}

.cfd-countdown--finished {
	display: block;
	padding: 1.4rem 2rem;
	background: linear-gradient(180deg, #1a205a 0%, #121741 100%);
	border-radius: 10px;
	border-bottom: 3px solid #ee2983;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 8px 22px rgba(18, 23, 65, 0.28);
}

@media (max-width: 480px) {
	.cfd-countdown {
		gap: 0.45rem;
	}

	.cfd-countdown-cell {
		min-width: 64px;
		padding: 0.75rem 0.5rem 0.6rem;
	}

	.cfd-countdown-num {
		font-size: 2rem;
	}

	.cfd-countdown-label {
		font-size: 0.58rem;
		letter-spacing: 0.12em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cfd-countdown-cell,
	.cfd-countdown-num.is-ticking {
		transition: none;
		animation: none;
	}
}
