.full_app_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000000000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.full_app_loader::after {
    content: "";
    width: 45px;
    height: 45px;
    border: 3px solid rgba(255, 204, 0, 0.1);
    border-top: 3px solid #ffcc00;
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

[data-navigation_url] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

[data-navigation_url].show {
    opacity: 1;
}

[data-navigation_url].hidden {
    display: none;
}
