#mobile-app-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    background: #3F0E35;
    color: #ffffff;
    animation: slideUp 0.3s ease-out;
    border-bottom: 1px solid rgba(121, 62, 108, 0.4);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
    max-width: 100vw;
}

#mobile-app-banner.light-theme {
    background: #F2F1F6;
    color: #090B0A;
}

#mobile-app-banner.dark-theme {
    background: #3F0E35;
    color: #ffffff;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

#mobile-app-banner .banner-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    max-width: 100%;
}

#mobile-app-banner .banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin-right: 9px;
    border-radius: 8px;
    background: rgba(121, 62, 108, 1);
    padding: 8px;
}

#mobile-app-banner.light-theme .banner-icon {
    background: #3F0E35;
}

#mobile-app-banner .banner-text {
    flex: 1;
    min-width: 0;
}

#mobile-app-banner .banner-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.015em;
    margin-bottom: 3px;
}

#mobile-app-banner .banner-subtitle {
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: -0.05em;
    color: #FFEDEF;
}

#mobile-app-banner .banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#mobile-app-banner .banner-btn-primary {
    font-weight: 700;
    font-size: 14px;
    line-height: 94%;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    background: #793E6C;
    padding: 11px 13px 9px 13px;;
    border-radius: 100px;
    text-transform: uppercase;
}

#mobile-app-banner .banner-btn-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-app-banner.light-theme .banner-title {
    color: #090B0A;
}

#mobile-app-banner.light-theme .banner-subtitle {
    color: #848489;
}

#mobile-app-banner.light-theme .banner-btn-primary {
    color: #FFFFFF;
}

#mobile-app-banner.dark-theme .banner-btn-primary {
    background: #FFFFFF;
    color: #3F0E35;
}