﻿/* Maintenance Page Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f5f5f5;
	min-height: 100vh;
}

.maintenance-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.maintenance-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 64px;
	background-color: #2d2d2d;
	display: flex;
	align-items: center;
	padding: 0 24px;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-logo {
	height: 40px;
	width: auto;
}
.maintenance-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #f0f0f0;
	min-height: 100vh;
	padding: 20px;
	padding-top: 84px;
}

.maintenance-wrapper {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 60px 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.div-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 700px;
	text-align: center;
}

.maintenance-image {
	max-height: 290px;
	max-width: 385px;
	margin-bottom: 46px;
}

.maintenance-title {
	font-size: 42px;
	font-weight: 500;
	color: #2d2d2d;
	margin-bottom: 16px;
}

.maintenance-text {
	font-size: 16px;
	line-height: 24px;
	color: #474747;
	font-weight: 600;
	margin-bottom: 24px;
}

.expected-time {
	display: block;
	background-color: #fff3e0;
	border: 1px solid #ffb74d;
	padding: 12px 24px;
	border-radius: 8px;
	color: #e65100;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.maintenance-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.info-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #666;
	font-size: 14px;
}

.info-icon {
	font-size: 18px;
}

.maintenance-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #f0f0f0;
	padding: 20px 40px;
	text-align: center;
}

.footer-content {
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.5;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

	.footer-links a {
		font-size: 12px;
		color: #2d2d2d;
		text-decoration: none;
	}

		.footer-links a:hover {
			text-decoration: underline;
		}

	.footer-links .separator {
		color: #999;
	}

/* Responsive */
@media (max-width: 768px) {
	.maintenance-title {
		font-size: 28px;
	}

	.maintenance-wrapper {
		padding: 40px 20px;
	}

	.maintenance-image {
		max-width: 280px;
		max-height: 200px;
	}
}
