* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.loader-container {
	text-align: center;
	color: white;
	z-index: 10;
}

.loader {
	width: 80px;
	height: 80px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 30px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loading-text {
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 15px;
	opacity: 0.9;
}

.subtitle {
	font-size: 16px;
	opacity: 0.7;
	font-weight: 300;
}

.dots {
	display: inline-block;
	animation: dots 1.5s infinite;
}

@keyframes dots {
	0%,
	20% {
		content: "";
	}
	40% {
		content: ".";
	}
	60% {
		content: "..";
	}
	80%,
	100% {
		content: "...";
	}
}

.background-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape:nth-child(2) {
	width: 120px;
	height: 120px;
	top: 60%;
	right: 10%;
	animation-delay: 2s;
}

.shape:nth-child(3) {
	width: 60px;
	height: 60px;
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

.status-hidden {
	position: fixed;
	top: -100px;
	left: -100px;
	opacity: 0;
	pointer-events: none;
}
