/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #000;
	color: #fff;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: hidden;
}

/* Enhanced background effects */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			circle at 20% 20%,
			rgba(60, 60, 60, 0.4) 0%,
			transparent 60%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(60, 60, 60, 0.4) 0%,
			transparent 60%
		),
		radial-gradient(
			circle at 10% 90%,
			rgba(40, 40, 40, 0.3) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 90% 10%,
			rgba(40, 40, 40, 0.3) 0%,
			transparent 40%
		),
		linear-gradient(
			135deg,
			rgba(0, 0, 0, 0.9) 0%,
			rgba(20, 20, 20, 0.8) 50%,
			rgba(0, 0, 0, 0.9) 100%
		);
	z-index: -3;
}

/* Additional glow effect */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		/* Enhanced spiderweb background */
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 40px,
			rgba(255, 255, 255, 0.03) 40px,
			rgba(255, 255, 255, 0.03) 41px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 40px,
			rgba(255, 255, 255, 0.03) 40px,
			rgba(255, 255, 255, 0.03) 41px
		),
		/* Diagonal web lines */
			repeating-linear-gradient(
				45deg,
				transparent,
				transparent 60px,
				rgba(255, 255, 255, 0.02) 60px,
				rgba(255, 255, 255, 0.02) 61px
			),
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 60px,
			rgba(255, 255, 255, 0.02) 60px,
			rgba(255, 255, 255, 0.02) 61px
		);
	background-size:
		200px 200px,
		200px 200px,
		300px 300px,
		300px 300px;
	z-index: -2;
	opacity: 0.6;
}

/* Animated particles effect */
.container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(
			circle at 25% 25%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 1%
		),
		radial-gradient(
			circle at 75% 45%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 1%
		),
		radial-gradient(
			circle at 35% 65%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 1%
		),
		radial-gradient(
			circle at 85% 85%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 1%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(255, 255, 255, 0.05) 0%,
			transparent 3%
		);
	background-size:
		100px 100px,
		150px 150px,
		100px 100px,
		200px 200px,
		300px 300px;
	z-index: -1;
	opacity: 0.7;
	animation: drift 60s linear infinite;
}

@keyframes drift {
	0% {
		background-position:
			0% 0%,
			0% 0%,
			0% 0%,
			0% 0%,
			0% 0%;
	}
	100% {
		background-position:
			100px 100px,
			-150px 150px,
			100px -100px,
			-200px 200px,
			300px 300px;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
	position: relative;
}

/* Main content styles */
main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem 0;
	position: relative;
	z-index: 1;
}

/* Logo styles - now part of main content */
.logo {
	position: relative;
	width: 180px;
	height: 180px;
	margin: 0 auto 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
	z-index: -1;
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 0.9;
	}
}

.logo img {
	max-width: 180px;
	height: auto;
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
	mix-blend-mode: screen;
	transform: scale(1);
	transition: transform 0.5s ease;
}

/* Central content highlight */
main::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 80%;
	background: radial-gradient(
		ellipse at center,
		rgba(40, 40, 40, 0.5) 0%,
		transparent 70%
	);
	z-index: -1;
	border-radius: 50%;
	filter: blur(30px);
}

h1 {
	font-size: 3.8rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.05em;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	position: relative;
	animation: glow 8s ease-in-out infinite;
}

@keyframes glow {
	0%,
	100% {
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	}
	50% {
		text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
	}
}

h2 {
	font-size: 1.5rem;
	font-weight: 400;
	max-width: 600px;
	margin-bottom: 3rem;
	color: #ccc;
	text-shadow: 0 0 10px rgba(204, 204, 204, 0.3);
}

.coming-soon {
	margin: 4rem 0;
	position: relative;
	z-index: 2;
}

.coming-soon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140%;
	height: 250%;
	background: radial-gradient(
		ellipse,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	z-index: -1;
	filter: blur(10px);
}

.coming-soon p {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	border: 2px solid rgba(255, 255, 255, 0.8);
	padding: 1.2rem 2.5rem;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	box-shadow:
		0 0 30px rgba(0, 0, 0, 0.5),
		0 0 60px rgba(255, 255, 255, 0.05);
	transform: perspective(500px) rotateX(5deg);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: perspective(500px) rotateX(5deg) translateY(0);
	}
	50% {
		transform: perspective(500px) rotateX(5deg) translateY(-10px);
	}
}

.contact {
	margin-top: 4rem;
	position: relative;
	z-index: 1;
}

.contact p {
	font-size: 1.2rem;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0 4px;
	position: relative;
	z-index: 1;
}

a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: rgba(255, 255, 255, 0.1);
	z-index: -1;
}

a:hover {
	border-color: #fff;
}

a:hover::before {
	height: 100%;
}

/* Footer styles */
footer {
	text-align: center;
	padding: 2.5rem 0 2rem;
	font-size: 0.9rem;
	color: #777;
	position: relative;
	z-index: 1;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40%;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
}

footer a {
	color: #777;
}

footer a:hover {
	color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 1.2rem;
	}

	.coming-soon p {
		font-size: 1.4rem;
		padding: 0.8rem 1.8rem;
	}

	.logo {
		width: 150px;
		height: 150px;
		margin-bottom: 0.5rem;
	}

	.logo img {
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 1.5rem;
	}

	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1rem;
	}

	.coming-soon p {
		font-size: 1.2rem;
		padding: 0.6rem 1.2rem;
	}

	.logo {
		width: 120px;
		height: 120px;
		margin-bottom: 0.3rem;
	}

	.logo img {
		max-width: 120px;
	}
}
