#pageLoader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-loading {
	width: 100%;
	max-width: 500px;
	font-family: 'Press Start 2p';
	background: #000000;
	border: 4px solid #00ffff;
	padding: 25px;
	color: #00ffff;
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}

.toast-loading::before,
.toast-loading::after {
	content: '';
	position: absolute;
	background: #00ffff;
}

.toast-loading::before {
	top: -8px;
	left: 8px;
	right: 8px;
	height: 4px;
}

.toast-loading::after {
	left: -8px;
	top: 8px;
	bottom: 8px;
	width: 4px;
}

.toast-header {
	font-size: 12px;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #ffff00;
}

.toast-body {
	font-size: 10px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.loading-container {
	margin: 25px 0 15px;
}

.loading-bar {
	width: 100%;
	height: 12px;
	background: #000000;
	border: 2px solid #00ffff;
	position: relative;
	margin-bottom: 10px;
}

.loading-progress {
	height: 100%;
	background: #00ffff;
	width: 0%;
	animation: load 2.5s linear infinite;
}

.loading-text {
	font-size: 8px;
	display: flex;
	justify-content: space-between;
	color: #00ffff;
}

.percentage {
	font-size: 10px;
	color: #ffff00;
}

/* Animacje */
@keyframes load {
	0% { width: 0%; }
	100% { width: 100%; }
}

@keyframes toastBlink {
	0%, 100% { 
		border-color: #00ffff;
	}
	50% { 
		border-color: #0088ff;
	}
}

@keyframes textBlink {
	0%, 100% { 
		opacity: 1;
	}
	50% { 
		opacity: 0.7;
	}
}

.toast-loading,
.toast-loading::before,
.toast-loading::after {
	animation: toastBlink 1.5s infinite;
}

.toast-header {
	animation: textBlink 1s infinite;
}