#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.6s ease-out;
    overflow: hidden;
}

.travel-plane {
    animation: fly-bottom-to-top 1.5s ease-out forwards;
    margin-bottom: 20px;
    display: block;
}

@keyframes fly-bottom-to-top {
    0% {
        transform: translateY(100vh) rotate(5deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translateY(-100px) rotate(-5deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(-5deg);
        opacity: 0;
    }
}

.loading-text {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
    text-align: center;
    opacity: 0.8;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
