.cbp-countdown-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 12px 18px;
	border-radius: 8px;
	background: radial-gradient(circle at 0% 0%, #163556 0%, #0c1d32 40%, #081425 100%);
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	min-height: 72px;
	overflow: hidden;
}

.cbp-left {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: max-content;
}

.cbp-icon {
	display: inline-flex;
	color: #ecf6ff;
	opacity: 0.95;
}

.cbp-title {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.2px;
	white-space: nowrap;
}

.cbp-middle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 1;
}

.cbp-time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 58px;
}

.cbp-value {
	font-size: 50px;
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: 2px;
	color: #dff8ff;
	text-shadow: 0 0 16px rgba(102, 219, 255, 0.2);
}

.cbp-label {
	margin-top: 2px;
	font-size: 30px;
	line-height: 1;
	color: #d5dfec;
	font-weight: 400;
	opacity: 0.95;
}

.cbp-separator {
	font-size: 44px;
	line-height: 1;
	font-weight: 400;
	color: #c3d4e5;
	margin-top: -10px;
}

.cbp-right {
	min-width: max-content;
}

.cbp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 42px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: #ecffff;
	background: linear-gradient(180deg, #38b9be 0%, #218e97 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 18px rgba(69, 245, 245, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cbp-button:hover,
.cbp-button:focus {
	color: #ecffff;
	transform: translateY(-1px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(69, 245, 245, 0.45);
}

@media (max-width: 1200px) {
	.cbp-title {
		font-size: 18px;
	}

	.cbp-value {
		font-size: 36px;
	}

	.cbp-label {
		font-size: 18px;
	}

	.cbp-separator {
		font-size: 32px;
		margin-top: -6px;
	}

	.cbp-button {
		font-size: 16px;
		padding: 10px 28px;
	}
}

@media (max-width: 860px) {
	.cbp-countdown-banner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px;
	}

	.cbp-left,
	.cbp-middle,
	.cbp-right {
		justify-content: center;
	}

	.cbp-middle {
		flex-wrap: wrap;
		gap: 6px;
	}

	.cbp-time-unit {
		min-width: 46px;
	}

	.cbp-value {
		font-size: 30px;
	}

	.cbp-label {
		font-size: 14px;
	}

	.cbp-separator {
		font-size: 24px;
		margin-top: -2px;
	}

	.cbp-title {
		font-size: 20px;
	}

	.cbp-button {
		width: 100%;
	}
}
