:root {
	--primary: #4e73df;
	--secondary: #1cc88a;
	--dark-blue: #2c3e50;
	--light: #f8f9fc;
	--accent: #e74a3b;
}

body {
	font-family: 'Poppins', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(-45deg, #4e73df, #1cc88a, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.countdown-container {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.school-logo {
	max-height: 100px;
	margin-bottom: 20px;
}

.countdown-title {
	font-weight: 700;
	color: var(--dark-blue);
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
}

.countdown-subtitle {
	color: #6c757d;
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.countdown-item {
	background: white;
	border-radius: 15px;
	padding: 20px 15px;
	min-width: 100px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.countdown-value {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
}

.countdown-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	color: #6c757d;
	letter-spacing: 1px;
	margin-top: 5px;
}

footer {
	color: white;
	margin-top: 40px;
	font-size: 0.9rem;
}

footer a {
	color: white;
	text-decoration: none;
	font-weight: 500;
}

footer a:hover {
	text-decoration: underline;
}

.animate-pop {
	animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes popIn {
	0% { transform: scale(0.5); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}