.timer-section {
	position: relative;
	z-index: 1;
}

.timer-container {
	display: flex;
	margin-top: 20px;
}

.timer-box {
	background: #272727;
	border: 2px solid #333;
	border-radius: 8px;
	padding: 16px;
	min-width: 60px;
	text-align: center;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

/* .timer-box:hover {
	transform: translateY(-5px);
}

.timer-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #c00, #ff7b7b);
} */

.timer-digit {
	color: white;
	font-size: 18px;
	font-weight: 700;
	position: relative;
}

/* .timer-digit.bounce {
	animation: bounce 0.5s ease;
} */

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

.timer-label {
	color: #898989;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

@media (max-width: 600px) {
	.timer-box {
		min-width: 65px;
		padding: 10px 5px;
	}

	.timer-digit {
		font-size: 17px;
	}

}

@media (max-width: 400px) {
	.timer-box {
		min-width: 58px;
	}

	.timer-digit {
		font-size: 16px;
	}

	.timer-label {
		font-size: 9px;
	}
}
