#uma-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #DC0031;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
    /* Smooth fade out when finished */
    transition: opacity 0.8s ease, visibility 0.8s;

    background-image: url('https://gudmarketing.com/wp-content/uploads/2025/12/Vector1.png');
    background-repeat: no-repeat;
    background-position: center center;
}
.uma-image-container {
    width: 200px;
}

.uma-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.uma-text-container {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    max-width: 500px;
    font-family: 'Lato', sans-serif;
}

#dynamic-phrase {
    display: block;
    margin-top: 8px;
    color: #8F0020;
    /* Smooth crossfade for text */
    transition: opacity 0.3s ease;
}

/* Utility class to trigger fade out via JS */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}