/* ==================== REUSABLE CODES ==================== */
.d-none {
	display: none;
}

/* ==================== ALL CODES ==================== */
body {
	margin: 0;
	font-family: "Open Sans", serif;
	background-color: white;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
	overflow: hidden;
}

img {
	user-drag: none;
	/* Prevent dragging */
	-webkit-user-drag: none;
	/* Prevent dragging for WebKit browsers */
	pointer-events: none;
	/* Optional: disable all mouse events if needed */
	-webkit-user-select: none;
	/* Prevent text/image selection for WebKit browsers */
	-moz-user-select: none;
	/* Prevent selection for Firefox */
	-ms-user-select: none;
	/* Prevent selection for Internet Explorer/Edge */
	user-select: none;
	display: block;
}

svg {
	width: 100%;
	display: block;
}

.svg-main-board {
	width: 100%;
	height: auto;
}


.container {
	width: 100%;
	max-width: 1293px;
	margin: 0 auto;
	padding: 3em 0;
	/* background-color: #fff; */
	border-radius: 8px;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.main-header img {
	text-align: left;
}

.footer-decor.left {
	position: absolute;
	left: 0;
}

.footer-decor.right {
	position: absolute;
	right: 0;
}

.footer-decor img {
	width: 23vw;
	max-width: 450px;
}

.main-header {
	font-size: 32px;
	font-weight: bold;
	color: #31a02c;
	display: flex;
	justify-content: start;
	align-items: center;
	position: fixed;
	top: 0;
	padding: 20px;
	width: 100%;
	z-index: 999999;
}

.countdown {
	font-size: 60px;
	font-weight: bold;
	color: #31a02c;
	margin: 20px 0;
}

.countdown span {
	font-size: 24px;
	color: #555;
}

.migration-notice {
	margin-top: 20px;
	font-size: 20px;
	color: #555;
}

.migration-notice strong {
	color: #31a02c;
}

.illustration {
	margin: 20px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.illustration img {
	width: 60px;
	height: auto;
}

.main-footer {
	margin-top: 30px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 0;
	right: 0;
	background-color: #1E3D25;
	/* height: 128px; */
	width: 100%;
	font-size: clamp(1rem, 0.38vw + 0.818rem, 1.125rem);
	overflow: hidden;
	position: relative;
	font-weight: 600;
}

.footer-decor {
	overflow: hidden;
}

.main-footer a {
	text-decoration: none;
	background-color: #ffffff00;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s;
	width: max-content;
	display: inline-block;
	border-radius: 100px;
	border: solid 1px white;
	box-shadow: none;
	font-size: clamp(1rem, 0.38vw + 0.818rem, 1.125rem);
	font-weight: 600;
}

.main-footer a:hover {
	background-color: #F58E30;
	color: #fff;
	border: solid 1px #F58E30;
}

.logo-container {
	text-align: left;
}

.p-b-0 {
	padding-bottom: 0;
}

.p-0 {
	padding: 0;
}


.main-content {
	position: relative;
	text-align: center;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-content .background {
	/*     background-color: red; */
	display: flex;
	justify-content: center;
	width: 100%;
}

.background {
	height: 100%;
	width: 100%;
	position: relative;
}

.centered-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
}

.centered-text h1 {
	margin: 0;
	font-size: 2rem;
}

.centered-text p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.5;
}

.footer-links {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	row-gap: 10px;
	color: white;
	column-gap: 15px;
}

@media(max-width: 980px) {
	.main-header {
		background-color: white;
		padding: 10px;
	}

	.main-header .container {
		padding: 0;
	}

	.footer-links {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: unset;
		flex-direction: column;
		row-gap: 10px;
	}

	.main-footer {
		height: unset;
	}

	.main-footer a {
		padding: 7px 20px;
	}

	.main-footer .container {
		padding: 1.5em 0;
	}


	body {
		height: unset;
		overflow: auto;
	}

	.main-content {
		height: unset;
		overflow: unset;
	}

	.main-header img {
		max-height: 32px;
	}
}

.main-header .logo-container {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

.countdown {
	font-family: Arial, sans-serif;
	font-size: 48px;
	text-align: center;
	padding: 20px;
}

.spinner {
	transform-box: fill-box;
	transform-origin: center;
	/* animation: spin 5s linear infinite;  */
}

.spinner.desktop,
.spinner.mobile {
	opacity: 0;
	transition: .5s;
}

.spinner-show {
	opacity: 1 !important;
	transition: .5s;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

#countdown {
	color: #1DAA4B;
	text-align: center;
	font-family: "Arial", sans-serif;
	font-size: 80px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}


/* Default: Show desktop on desktop and mobile on mobile */
.svg-main-board.desktop {
	display: block;
	/* Show desktop version */
	transform: scale(1.1);
	width: 100%;
}

.svg-main-board.mobile {
	display: block;
	/* Show mobile version */
	margin-bottom: -.2em;
}

/* Hide mobile version on screens wider than 980px */
@media (min-width: 980px) {
	.svg-main-board.mobile {
		display: none;
	}
}

/* Hide desktop version on screens smaller than 980px */
@media (max-width: 979px) {
	.svg-main-board.desktop {
		display: none;
	}
}