* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

.container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	position: relative;
	z-index: 10;
}

.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-width: 900px;
	width: 100%;
}

.logo-container {
	margin-bottom: 2rem;
	animation: fadeInDown 1s ease-out;
}

.logo {
	max-width: 150px;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.site-name {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e2e8f0;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.description {
	font-size: 1.125rem;
	color: #94a3b8;
	margin-bottom: 3rem;
	line-height: 1.6;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
	animation: fadeInUp 1s ease-out 0.8s both;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	min-width: 120px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.countdown-item:hover {
	transform: translateY(-5px);
	border-color: rgba(59, 130, 246, 0.4);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.countdown-number {
	font-size: 3rem;
	font-weight: 700;
	color: #3b82f6;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.countdown-label {
	font-size: 0.875rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.cta-container {
	animation: fadeInUp 1s ease-out 1s both;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.footer {
	padding: 2rem 0;
	text-align: center;
	width: 100%;
	animation: fadeIn 1s ease-out 1.2s both;
}

.footer p {
	color: #64748b;
	font-size: 0.875rem;
}

.footer a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
}

.footer a:hover {
	color: #60a5fa;
}

.background-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(59, 130, 246, 0.15) 0%,
		transparent 70%
	);
	animation: float 20s ease-in-out infinite;
}

.circle-1 {
	width: 500px;
	height: 500px;
	top: -250px;
	left: -250px;
	animation-delay: 0s;
}

.circle-2 {
	width: 400px;
	height: 400px;
	bottom: -200px;
	right: -200px;
	animation-delay: 5s;
}

.circle-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-50px, 50px) scale(0.9);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.site-name {
		font-size: 2.5rem;
	}

	.tagline {
		font-size: 1.25rem;
	}

	.description {
		font-size: 1rem;
	}

	.countdown {
		gap: 1rem;
		flex-wrap: wrap;
	}

	.countdown-item {
		min-width: 90px;
		padding: 1rem 1.5rem;
	}

	.countdown-number {
		font-size: 2rem;
	}

	.countdown-label {
		font-size: 0.75rem;
	}

	.circle-1,
	.circle-2,
	.circle-3 {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 480px) {
	.site-name {
		font-size: 2rem;
	}

	.countdown-item {
		min-width: 70px;
		padding: 0.75rem 1rem;
	}

	.countdown-number {
		font-size: 1.5rem;
	}

	.cta-button {
		padding: 0.875rem 2rem;
		font-size: 1rem;
	}
}
