.lottie-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10vh;
}

/* Ausblenden auf mobilen Geräten */
@media (max-width: 767px) {
    .lottie-wrapper {
        display: none;
    }
}

.lottie-container {
    width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-container {
    width: 200px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-top: -20px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #000;
    transition: width 0.3s ease;
}

.progress-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

#brx-content {
    visibility: visible !important;
    opacity: 1 !important;
}