body {
	background: linear-gradient(135deg, #4b6cb7, #182848);
	color: white;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.maintenance-container {
	max-width: 500px;
	padding: 40px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.maintenance-icon {
	font-size: 80px;
	margin-bottom: 20px;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}
