.construction-notice {
	max-width: 920px;
	margin: 0 auto 3rem;
	padding: 2.5rem 1.5rem;
	text-align: center;
	background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
	border: 1px solid rgba(192, 192, 192, 0.22);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.construction-notice h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #e8e8e8;
}

.construction-notice p {
	margin: 0.5rem 0 0;
	color: #c0c0c0;
}

.construction-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.construction-notice.is-visible {
	animation: mizu-fade-in 0.6s ease;
}

@keyframes mizu-fade-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
