#countdown-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 99999;
	background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: 'Signika', sans-serif;
	text-align: center;
	transition: opacity 1s ease;
}
#countdown-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}
#countdown-title {
	font-size: 20px;
	letter-spacing: 2px;
	margin-bottom: 12px;
	opacity: 0.8;
	padding: 0 20px;
}
#countdown-timer {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 3px;
	margin-bottom: 40px;
	font-variant-numeric: tabular-nums;
}
#countdown-btn {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 6px solid #4a0000;
	background: #4a0000;
	color: rgba(255,255,255,0.5);
	font-size: 28px;
	font-weight: bold;
	cursor: not-allowed;
	box-shadow: 0 0 30px rgba(255,0,0,0.2) inset;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	outline: none;
}
#countdown-btn.armed {
	cursor: pointer;
	color: #fff;
	border-color: #ff0000;
	animation: police-flash 0.6s infinite;
}
#countdown-btn.armed:active {
	transform: scale(0.95);
}
@keyframes police-flash {
	0%, 100% {
		background: #ff0000;
		box-shadow: 0 0 60px 20px rgba(255,0,0,0.9), 0 0 120px 40px rgba(255,0,0,0.4);
	}
	50% {
		background: #4a0000;
		box-shadow: 0 0 15px 5px rgba(255,0,0,0.3);
	}
}
#countdown-hint {
	margin-top: 25px;
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 1px;
}
#julien-section {
	display: none;
	margin: 20px auto 80px;
}
#julien-gif {
	max-width: 320px;
	width: 80%;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(255,255,255,0.15);
}
#julien-audio {
	margin: 15px auto 0;
	width: 160px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
#julien-audio iframe {
	display: block;
}
