#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181828;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    opacity: 1;
    overflow: hidden;
}

#loading-screen img {
    max-height: 75px;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

#loading-screen .powered-by {
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    #loading-screen img {
        max-height: 50px;
        margin-bottom: 25px;
    }
}