#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #010101;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

#loader.fade-out {
	opacity: 0;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 3px solid #E1D3B6;
	border-top: 3px solid #C4A572;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	margin-top: 20px;
	font-size: 14px;
	color: #666;
	letter-spacing: 1px;
}

.progress-bar {
	width: 200px;
	height: 3px;
	background: #E1D3B6;
	margin-top: 20px;
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: #333;
	width: 0%;
	transition: width 0.3s ease;
}

#loadercontent {
    display: none;
    width: 100%;
    height: 100vh;
    position: relative;
}

#loadercontent.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}