	#_kaya_loading {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #020617;
		color: #e5e7eb;
		font-family: inherit;
		z-index: 2147483647;
		display: flex;
		align-items: center;
		justify-content: center;
		direction: rtl;
		pointer-events: all;
	}
	#_kaya_loading.hidden {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.8s ease, visibility 0.8s ease;
	}
	#_kaya_loading .loading_box {
		width: 360px;
		text-align: right;
	}
	#_kaya_loading .loading_title {
		font-size: 18px;
		font-weight: 700;
		opacity: .85;
		margin-bottom: 14px;
	}
	#_kaya_loading .loading_bar_container {
		height: 5px;
		background: #111827;
		overflow: hidden;
		border-radius: 10px;
	}
	#_kaya_loading .loading_bar_fill {
		height: 100%;
		width: 0;
		background: linear-gradient(90deg, #00f7ff, #7c3aed);
		transition: width 0.3s ease;
	}
	#_kaya_loading .loading_message {
		margin-top: 14px;
		font-size: 15px;
		font-weight: 500;
		opacity: .8;
		height: 36px;
	}
    
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.05); opacity: 1; }
        100% { transform: scale(1); opacity: 0.8; }
    }
    
    .loading_logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        animation: pulse 2s infinite ease-in-out;
        filter: drop-shadow(0 0 10px rgba(255, 217, 61, 0.3));
    }