body {
	margin: 0;
}

.loader-container {
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
	min-height: 100vh;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	align-items: center;
	justify-content: center;
}

.simple-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo-container {
	margin-bottom: 30px;
	animation: logoFloat 3s infinite ease-in-out;
}

.loader-logo {
	width: 80px;
	filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

.loading-dots {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.dot {
	width: 12px;
	height: 12px;
	background: linear-gradient(45deg, #007bff, #00d4ff);
	border-radius: 50%;
	animation: dotBounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
	animation-delay: -0.32s;
}

.dot:nth-child(2) {
	animation-delay: -0.16s;
}

.dot:nth-child(3) {
	animation-delay: 0s;
}

.loading-text {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	animation: textFade 2s infinite ease-in-out;
}

@keyframes logoFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes dotBounce {
	0%, 80%, 100% {
		transform: scale(0.8);
		opacity: 0.5;
	}
	40% {
		transform: scale(1.2);
		opacity: 1;
	}
}

@keyframes textFade {
	0%, 100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}
