.fsc-banner {
	background: linear-gradient(90deg, var(--fsc-bg-start, #c81e1e) 0%, var(--fsc-bg-end, #e63946) 100%);
	padding: 40px 20px;
	text-align: center;
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}

.fsc-banner * {
	box-sizing: border-box;
}

.fsc-inner {
	max-width: 700px;
	margin: 0 auto;
}

.fsc-headline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.2;
}

.fsc-alarm-icon {
	display: inline-flex;
	flex-shrink: 0;
}

.fsc-subtext {
	font-size: 16px;
	margin: 0 0 28px;
	opacity: 0.95;
}

.fsc-timer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.fsc-unit {
	background: rgba(255, 255, 255, 0.92);
	color: #c81e1e;
	border-radius: 10px;
	min-width: 90px;
	padding: 12px 8px 10px;
}

.fsc-unit .fsc-label {
	color: #c81e1e;
	opacity: 0.75;
}

.fsc-button {
	display: inline-block;
	margin-top: 30px;
	background: #ffffff;
	color: #c81e1e;
	font-weight: 800;
	font-size: 16px;
	text-decoration: none;
	padding: 14px 36px;
	border-radius: 50px;
	letter-spacing: 0.3px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.fsc-button:hover,
.fsc-button:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	color: #a81616;
}

.fsc-number {
	display: block;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 1px;
}

.fsc-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 6px;
	opacity: 0.9;
}

.fsc-colon {
	font-size: 32px;
	font-weight: 800;
	opacity: 0.85;
	transform: translateY(-8px);
}

@media (max-width: 480px) {
	.fsc-headline {
		font-size: 24px;
	}
	.fsc-unit {
		min-width: 70px;
		padding: 10px 6px 8px;
	}
	.fsc-number {
		font-size: 28px;
	}
	.fsc-colon {
		font-size: 24px;
	}
}
