@import url("fonts/IRANSans/IRANSans.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-family: 'IRANSans', sans-serif;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	direction: rtl;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

body::before,
body::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	transition: opacity 3s ease-in-out;
}

body::before {
	background: linear-gradient(135deg, #00c6ff, #0072ff);
	animation: GradientOne 15s infinite;
}

body::after {
	background: linear-gradient(135deg, #ff512f, #dd2476);
	animation: GradientTwo 15s infinite;
}

@keyframes GradientOne {
	0% {
		opacity: 1;
	}

	20% {
		opacity: 1;
	}

	25% {
		opacity: 0;
	}

	45% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	75% {
		opacity: 0;
	}

	95% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes GradientTwo {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	45% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	75% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.container {
	padding: 20px;
	width: 100%;
	line-height: 2;
}

.main-title {
	font-size: clamp(30px, 5vw, 70px);
	font-weight: bold;
	letter-spacing: 1px;
	text-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	cursor: default;
}

.main-title:hover {
	transform: scale(1.05);
	text-shadow:
		0 0 12px rgba(255, 255, 255, 0.5),
		0 0 30px rgba(255, 255, 255, 0.5),
		0 10px 35px rgba(0, 0, 0, 0.5);
}

.coming-title {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.10em;
	font-size: clamp(10px, 1.6vw, 22px);
	font-weight: bold;
	white-space: nowrap;
	color: #000000;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.coming-dots {
	display: inline-block;
	width: 0px;
	text-align: right;
}